Skip to content

Commit

Permalink
[#6263] Javier's comments
Browse files Browse the repository at this point in the history
  • Loading branch information
weaverryan committed Feb 21, 2016
1 parent 11e4532 commit 3d3bac0
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions cookbook/debugging.rst
Expand Up @@ -21,9 +21,12 @@ Disabling the Bootstrap File and Class Caching

And to make the production environment as fast as possible, Symfony creates
big PHP files in your cache containing the aggregation of PHP classes your
project needs for every request. However, this behavior can confuse your
debugger. This recipe shows you how you can tweak this caching mechanism
to make it friendlier when you need to debug code that involves Symfony classes.
project needs for every request. However, this behavior can confuse your debugger,
because the same class can be located in two different places: the original class
file and the big file which aggregates lots of classes.

This recipe shows you how you can tweak this caching mechanism to make it friendlier
when you need to debug code that involves Symfony classes.

The ``app_dev.php`` front controller reads as follows by default::

Expand Down

0 comments on commit 3d3bac0

Please sign in to comment.