Skip to content

Commit

Permalink
Fix class name missing full import (#540)
Browse files Browse the repository at this point in the history
  • Loading branch information
williamdes authored Sep 19, 2023
1 parent 29de66d commit 30f65f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/base_collectors.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ Aggregates multiple collectors. Do not provide any widgets, you have to add your

$debugbar->addCollector(new DebugBar\DataCollector\AggregatedCollector('all_messages', 'messages', 'time'));
$debugbar['all_messages']->addCollector($debugbar['messages']);
$debugbar['all_messages']->addCollector(new MessagesCollector('mails'));
$debugbar['all_messages']->addCollector(new DebugBar\DataCollector\MessagesCollector('mails'));
$debugbar['all_messages']['mails']->addMessage('sending mail');

$renderer = $debugbar->getJavascriptRenderer();
Expand Down

0 comments on commit 30f65f1

Please sign in to comment.