Skip to content

Commit

Permalink
Use dumper for route parameter instead of var_dump
Browse files Browse the repository at this point in the history
  • Loading branch information
michalbundyra committed Mar 21, 2020
1 parent 45ae474 commit 355947e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion view/laminas-developer-tools/toolbar/request.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ $color = ($statusCode < 400)
</span>
<span class="laminas-toolbar-info">
<span class="laminas-detail-label">Other Route Parameters</span>
<span class="laminas-detail-value"><?php var_dump( $this->collector->getOtherParameters() ); ?></span>
<span class="laminas-detail-value"><?php dump($this->collector->getOtherParameters()); ?></span>
</span>
<span class="laminas-toolbar-info">
<span class="laminas-detail-label">Route</span>
Expand Down

0 comments on commit 355947e

Please sign in to comment.