Skip to content

Commit

Permalink
return ajax collector to collectors.php
Browse files Browse the repository at this point in the history
in symfony 3.0 there is no ajax collector declared. Because of that debug toolbar do not display ajac calls
  • Loading branch information
NothingWeAre committed Dec 10, 2015
1 parent c1bfa46 commit 8a2c757
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -15,6 +15,10 @@
<tag name="data_collector" template="@WebProfiler/Collector/request.html.twig" id="request" priority="335" />
</service>

<service id="data_collector.ajax" class="Symfony\Component\HttpKernel\DataCollector\AjaxDataCollector" public="false">
<tag name="data_collector" template="@WebProfiler/Collector/ajax.html.twig" id="ajax" priority="315" />
</service>

<service id="data_collector.exception" class="Symfony\Component\HttpKernel\DataCollector\ExceptionDataCollector" public="false">
<tag name="data_collector" template="@WebProfiler/Collector/exception.html.twig" id="exception" priority="305" />
</service>
Expand Down

0 comments on commit 8a2c757

Please sign in to comment.