Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Libor Stransky committed Feb 23, 2021

Verified

This commit was signed with the committer’s verified signature. The key has expired.
joehendrix Joe Hendrix
1 parent aafd6bc commit 3c278a3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions resources/views/EventPanel/panel.php
Original file line number Diff line number Diff line change
@@ -7,24 +7,24 @@
<th>Event</th>
<th>Execute Time</th>
</tr>
<?php foreach ($events as $key => $value): ?>
<?php foreach ($events as $key => $value) { ?>
<tr>
<th>
<span class="tracy-dump-object"><?php echo \Illuminate\Support\Arr::get($value,'key') ?></span><br />
<span class="tracy-dump-object"><?php echo \Illuminate\Support\Arr::get($value, 'key') ?></span><br />
<?php echo \Illuminate\Support\Arr::get($value, 'editorLink') ?><br />
<?php echo round(\Illuminate\Support\Arr::get($value,'execTime', 0) * 100, 2) ?> ms
<?php echo round(\Illuminate\Support\Arr::get($value, 'execTime', 0) * 100, 2) ?> ms
</th>
<td>
<?php
echo Tracy\Dumper::toHtml(\Illuminate\Support\Arr::get($value,'payload'), [
echo Tracy\Dumper::toHtml(\Illuminate\Support\Arr::get($value, 'payload'), [
Tracy\Dumper::LIVE => true,
Tracy\Dumper::TRUNCATE => 50,
Tracy\Dumper::COLLAPSE => true,
]);
?>
</td>
</tr>
<?php endforeach; ?>
<?php } ?>
</table>
</div>
</div>

0 comments on commit 3c278a3

Please sign in to comment.