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 22a6a7e commit 950fd99Copy full SHA for 950fd99
src/Symfony/Component/HttpKernel/Kernel.php
@@ -839,7 +839,7 @@ protected function dumpContainer(ConfigCache $cache, ContainerBuilder $container
839
'file' => $cache->getPath(),
840
'as_files' => true,
841
'debug' => $this->debug,
842
- 'inline_class_loader_parameter' => !$this->loadClassCache && !class_exists(ClassCollectionLoader::class, false) ? 'container.dumper.inline_class_loader' : null,
+ 'inline_class_loader_parameter' => \PHP_VERSION_ID >= 70000 && !$this->loadClassCache && !class_exists(ClassCollectionLoader::class, false) ? 'container.dumper.inline_class_loader' : null,
843
));
844
845
$rootCode = array_pop($content);
0 commit comments