@@ -96,7 +96,7 @@ public function load(array $configs, ContainerBuilder $container)
96
96
$ loader ->load ('web.xml ' );
97
97
$ loader ->load ('services.xml ' );
98
98
99
- if (PHP_VERSION_ID < 70000 ) {
99
+ if (\ PHP_VERSION_ID < 70000 ) {
100
100
$ definition = $ container ->getDefinition ('kernel.class_cache.cache_warmer ' );
101
101
$ definition ->addTag ('kernel.cache_warmer ' );
102
102
// Ignore deprecation for PHP versions below 7.0
@@ -289,7 +289,7 @@ public function load(array $configs, ContainerBuilder $container)
289
289
$ container ->registerForAutoconfiguration (ObjectInitializerInterface::class)
290
290
->addTag ('validator.initializer ' );
291
291
292
- if (PHP_VERSION_ID < 70000 ) {
292
+ if (\ PHP_VERSION_ID < 70000 ) {
293
293
$ this ->addClassesToCompile (array (
294
294
'Symfony \\Component \\Config \\ConfigCache ' ,
295
295
'Symfony \\Component \\Config \\FileLocator ' ,
@@ -674,7 +674,7 @@ private function registerRouterConfiguration(array $config, ContainerBuilder $co
674
674
$ container ->setParameter ('request_listener.http_port ' , $ config ['http_port ' ]);
675
675
$ container ->setParameter ('request_listener.https_port ' , $ config ['https_port ' ]);
676
676
677
- if (PHP_VERSION_ID < 70000 ) {
677
+ if (\ PHP_VERSION_ID < 70000 ) {
678
678
$ this ->addClassesToCompile (array (
679
679
'Symfony \\Component \\Routing \\Generator \\UrlGenerator ' ,
680
680
'Symfony \\Component \\Routing \\RequestContext ' ,
@@ -725,7 +725,7 @@ private function registerSessionConfiguration(array $config, ContainerBuilder $c
725
725
726
726
$ container ->setParameter ('session.save_path ' , $ config ['save_path ' ]);
727
727
728
- if (PHP_VERSION_ID < 70000 ) {
728
+ if (\ PHP_VERSION_ID < 70000 ) {
729
729
$ this ->addClassesToCompile (array (
730
730
'Symfony \\Component \\HttpKernel \\EventListener \\SessionListener ' ,
731
731
'Symfony \\Component \\HttpFoundation \\Session \\Storage \\NativeSessionStorage ' ,
@@ -810,7 +810,7 @@ private function registerTemplatingConfiguration(array $config, ContainerBuilder
810
810
$ container ->setDefinition ('templating.loader ' , $ loaderCache );
811
811
}
812
812
813
- if (PHP_VERSION_ID < 70000 ) {
813
+ if (\ PHP_VERSION_ID < 70000 ) {
814
814
$ this ->addClassesToCompile (array (
815
815
'Symfony \\Bundle \\FrameworkBundle \\Templating \\GlobalVariables ' ,
816
816
'Symfony \\Bundle \\FrameworkBundle \\Templating \\TemplateReference ' ,
@@ -850,7 +850,7 @@ private function registerTemplatingConfiguration(array $config, ContainerBuilder
850
850
$ container ->setAlias ('debug.templating.engine.php ' , 'templating.engine.php ' );
851
851
}
852
852
853
- if (PHP_VERSION_ID < 70000 ) {
853
+ if (\ PHP_VERSION_ID < 70000 ) {
854
854
$ this ->addClassesToCompile (array (
855
855
'Symfony \\Component \\Templating \\Storage \\FileStorage ' ,
856
856
'Symfony \\Bundle \\FrameworkBundle \\Templating \\PhpEngine ' ,
@@ -1191,7 +1191,7 @@ private function registerAnnotationsConfiguration(array $config, ContainerBuilde
1191
1191
$ definition = $ container ->findDefinition ('annotations.cache_warmer ' );
1192
1192
$ definition ->addTag ('kernel.cache_warmer ' );
1193
1193
1194
- if (PHP_VERSION_ID < 70000 ) {
1194
+ if (\ PHP_VERSION_ID < 70000 ) {
1195
1195
$ this ->addClassesToCompile (array (
1196
1196
'Symfony\Component\Cache\Adapter\PhpArrayAdapter ' ,
1197
1197
'Symfony\Component\Cache\DoctrineProvider ' ,
@@ -1448,7 +1448,7 @@ private function registerCacheConfiguration(array $config, ContainerBuilder $con
1448
1448
}
1449
1449
}
1450
1450
1451
- if (PHP_VERSION_ID < 70000 ) {
1451
+ if (\ PHP_VERSION_ID < 70000 ) {
1452
1452
$ this ->addClassesToCompile (array (
1453
1453
'Symfony\Component\Cache\Adapter\ApcuAdapter ' ,
1454
1454
'Symfony\Component\Cache\Adapter\FilesystemAdapter ' ,
0 commit comments