We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7b5cda commit 0f5b1a3Copy full SHA for 0f5b1a3
Bootstraps/Symfony.php
@@ -117,6 +117,17 @@ public function postHandle($app)
117
$container->get('debug.stopwatch')->__construct();
118
}
119
120
+ //Symfony\Bundle\TwigBundle\Loader\FilesystemLoader
121
+ //->Twig_Loader_Filesystem
122
+ if ($container->has('twig.loader')) {
123
+ $twigLoader = $container->get('twig.loader');
124
+ Utils::bindAndCall(function() use ($twigLoader) {
125
+ foreach ($twigLoader->cache as $path) {
126
+ ppm_register_file($path);
127
+ }
128
+ }, $twigLoader);
129
130
+
131
//reset all profiler stuff currently supported
132
if ($container->has('profiler')) {
133
$profiler = $container->get('profiler');
0 commit comments