Skip to content

Commit

Permalink
ContainerPanel: uses live dumps
Browse files Browse the repository at this point in the history
  • Loading branch information
dg committed Aug 31, 2014
1 parent baf98fd commit c1298b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Bridges/DITracy/templates/ContainerPanel.panel.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ use Nette,
<td class="<?php echo $autowired ? 'yes' : '' ?>"><?php echo $autowired ? 'yes' : 'no' ?></td>
<td>
<?php if (isset($registry[$name]) && !$registry[$name] instanceof Nette\DI\Container): ?>
<?php echo Dumper::toHtml($registry[$name], array(Dumper::COLLAPSE => TRUE)); ?>
<?php echo Dumper::toHtml($registry[$name], array(Dumper::COLLAPSE => TRUE, Dumper::LIVE => TRUE)); ?>
<?php elseif (isset($registry[$name])): ?>
<code><?php echo get_class($registry[$name]) ?></code>
<?php elseif (is_string($class)): ?>
Expand Down

0 comments on commit c1298b5

Please sign in to comment.