From 3d3bac0a919bdafc79917f5840206032ba8ace67 Mon Sep 17 00:00:00 2001 From: Ryan Weaver Date: Sun, 21 Feb 2016 16:53:58 -0500 Subject: [PATCH] [#6263] Javier's comments --- cookbook/debugging.rst | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/cookbook/debugging.rst b/cookbook/debugging.rst index 6e863be7d11..26c91da8c09 100644 --- a/cookbook/debugging.rst +++ b/cookbook/debugging.rst @@ -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::