Completed
Pull Request — master (#2101)
by Kevin
18:19
created

ContainerIeqghqs/getRouting_LoaderService.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
use Symfony\Component\DependencyInjection\Argument\RewindableGenerator;
4
5
// This file has been auto-generated by the Symfony Dependency Injection Component for internal use.
6
// Returns the public 'routing.loader' shared service.
7
8
$a = ${($_ = isset($this->services['file_locator']) ? $this->services['file_locator'] : $this->services['file_locator'] = new \Symfony\Component\HttpKernel\Config\FileLocator(${($_ = isset($this->services['kernel']) ? $this->services['kernel'] : $this->get('kernel')) && false ?: '_'}, ($this->targetDirs[2].'/Resources'), array(0 => $this->targetDirs[2]))) && false ?: '_'};
9
$b = ${($_ = isset($this->services['annotation_reader']) ? $this->services['annotation_reader'] : $this->getAnnotationReaderService()) && false ?: '_'};
10
11
$c = new \Sensio\Bundle\FrameworkExtraBundle\Routing\AnnotatedRouteControllerLoader($b);
0 ignored issues
show
Deprecated Code introduced by
The class Sensio\Bundle\FrameworkE...edRouteControllerLoader has been deprecated with message: since version 5.2

This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.

Loading history...
12
13
$d = new \Symfony\Bundle\FrameworkBundle\Routing\AnnotatedRouteControllerLoader($b);
14
15
$e = new \Symfony\Component\Config\Loader\LoaderResolver();
16
$e->addLoader(new \Symfony\Component\Routing\Loader\XmlFileLoader($a));
17
$e->addLoader(new \Symfony\Component\Routing\Loader\YamlFileLoader($a));
18
$e->addLoader(new \Symfony\Component\Routing\Loader\PhpFileLoader($a));
19
$e->addLoader(new \Symfony\Component\Config\Loader\GlobFileLoader($a));
20
$e->addLoader(new \Symfony\Component\Routing\Loader\DirectoryLoader($a));
21
$e->addLoader(new \Symfony\Component\Routing\Loader\DependencyInjection\ServiceRouterLoader($this));
22
$e->addLoader(new \Symfony\Component\Routing\Loader\AnnotationDirectoryLoader($a, $c));
23
$e->addLoader(new \Symfony\Component\Routing\Loader\AnnotationFileLoader($a, $c));
24
$e->addLoader($c);
25
$e->addLoader($d);
26
$e->addLoader(new \Symfony\Component\Routing\Loader\AnnotationDirectoryLoader($a, $d));
27
$e->addLoader(new \Symfony\Component\Routing\Loader\AnnotationFileLoader($a, $d));
28
29
return $this->services['routing.loader'] = new \Symfony\Bundle\FrameworkBundle\Routing\DelegatingLoader(${($_ = isset($this->services['controller_name_converter']) ? $this->services['controller_name_converter'] : $this->services['controller_name_converter'] = new \Symfony\Bundle\FrameworkBundle\Controller\ControllerNameParser(${($_ = isset($this->services['kernel']) ? $this->services['kernel'] : $this->get('kernel')) && false ?: '_'})) && false ?: '_'}, $e);
30