File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -21,9 +21,12 @@ Disabling the Bootstrap File and Class Caching
21
21
22
22
And to make the production environment as fast as possible, Symfony creates
23
23
big PHP files in your cache containing the aggregation of PHP classes your
24
- project needs for every request. However, this behavior can confuse your
25
- debugger. This recipe shows you how you can tweak this caching mechanism
26
- to make it friendlier when you need to debug code that involves Symfony classes.
24
+ project needs for every request. However, this behavior can confuse your debugger,
25
+ because the same class can be located in two different places: the original class
26
+ file and the big file which aggregates lots of classes.
27
+
28
+ This recipe shows you how you can tweak this caching mechanism to make it friendlier
29
+ when you need to debug code that involves Symfony classes.
27
30
28
31
The ``app_dev.php `` front controller reads as follows by default::
29
32
You can’t perform that action at this time.
0 commit comments