/**
  * Gets the 'routing.loader' service.
  *
  * This service is shared.
  * This method always returns the same instance of the service.
  *
  * @return \Symfony\Bundle\FrameworkBundle\Routing\DelegatingLoader A Symfony\Bundle\FrameworkBundle\Routing\DelegatingLoader instance.
  */
 protected function getRouting_LoaderService()
 {
     $a = $this->get('file_locator');
     $b = $this->get('annotation_reader');
     $c = new \Sensio\Bundle\FrameworkExtraBundle\Routing\AnnotatedRouteControllerLoader($b);
     $d = new \Symfony\Component\Config\Loader\LoaderResolver();
     $d->addLoader(new \Symfony\Component\Routing\Loader\XmlFileLoader($a));
     $d->addLoader(new \Symfony\Component\Routing\Loader\YamlFileLoader($a));
     $d->addLoader(new \Symfony\Component\Routing\Loader\PhpFileLoader($a));
     $d->addLoader(new \Symfony\Bundle\AsseticBundle\Routing\AsseticLoader($this->get('assetic.asset_manager'), array()));
     $d->addLoader(new \Symfony\Component\Routing\Loader\AnnotationDirectoryLoader($a, $c));
     $d->addLoader(new \Symfony\Component\Routing\Loader\AnnotationFileLoader($a, $c));
     $d->addLoader($c);
     return $this->services['routing.loader'] = new \Symfony\Bundle\FrameworkBundle\Routing\DelegatingLoader($this->get('controller_name_converter'), $this->get('monolog.logger.router', ContainerInterface::NULL_ON_INVALID_REFERENCE), $d);
 }
 /**
  * Gets the 'routing.loader' service.
  *
  * This service is shared.
  * This method always returns the same instance of the service.
  *
  * @return \Symfony\Bundle\FrameworkBundle\Routing\DelegatingLoader A Symfony\Bundle\FrameworkBundle\Routing\DelegatingLoader instance.
  */
 protected function getRouting_LoaderService()
 {
     $a = $this->get('file_locator');
     $b = new \Symfony\Component\Config\Loader\LoaderResolver();
     $b->addLoader(new \Symfony\Component\Routing\Loader\XmlFileLoader($a));
     $b->addLoader(new \Symfony\Component\Routing\Loader\YamlFileLoader($a));
     $b->addLoader(new \Symfony\Component\Routing\Loader\PhpFileLoader($a));
     return $this->services['routing.loader'] = new \Symfony\Bundle\FrameworkBundle\Routing\DelegatingLoader($this->get('controller_name_converter'), $this->get('monolog.logger.router', ContainerInterface::NULL_ON_INVALID_REFERENCE), $b);
 }
 /**
  * Gets the 'routing.loader' service.
  *
  * This service is shared.
  * This method always returns the same instance of the service.
  *
  * @return \Symfony\Bundle\FrameworkBundle\Routing\DelegatingLoader A Symfony\Bundle\FrameworkBundle\Routing\DelegatingLoader instance.
  */
 protected function getRouting_LoaderService()
 {
     $a = $this->get('file_locator');
     $b = $this->get('annotation_reader');
     $c = new \Sensio\Bundle\FrameworkExtraBundle\Routing\AnnotatedRouteControllerLoader($b);
     $d = new \Symfony\Component\Config\Loader\LoaderResolver();
     $d->addLoader(new \Symfony\Component\Routing\Loader\XmlFileLoader($a));
     $d->addLoader(new \Symfony\Component\Routing\Loader\YamlFileLoader($a));
     $d->addLoader(new \Symfony\Component\Routing\Loader\PhpFileLoader($a));
     $d->addLoader(new \Symfony\Component\Routing\Loader\DirectoryLoader($a));
     $d->addLoader(new \Symfony\Component\Routing\Loader\DependencyInjection\ServiceRouterLoader($this));
     $d->addLoader(new \Symfony\Component\Routing\Loader\AnnotationDirectoryLoader($a, $c));
     $d->addLoader(new \Symfony\Component\Routing\Loader\AnnotationFileLoader($a, $c));
     $d->addLoader($c);
     return $this->services['routing.loader'] = new \Symfony\Bundle\FrameworkBundle\Routing\DelegatingLoader($this->get('controller_name_converter'), $d);
 }
    /**
     * Gets the 'routing.loader' service.
     *
     * This service is shared.
     * This method always returns the same instance of the service.
     *
     * @return Symfony\Bundle\FrameworkBundle\Routing\DelegatingLoader A Symfony\Bundle\FrameworkBundle\Routing\DelegatingLoader instance.
     */
    protected function getRouting_LoaderService()
    {
        $a = $this->get('file_locator');

        $b = new \Symfony\Component\Config\Loader\LoaderResolver();
        $b->addLoader(new \Symfony\Component\Routing\Loader\XmlFileLoader($a));
        $b->addLoader(new \Symfony\Component\Routing\Loader\YamlFileLoader($a));
        $b->addLoader(new \Symfony\Component\Routing\Loader\PhpFileLoader($a));

        return $this->services['routing.loader'] = new \Symfony\Bundle\FrameworkBundle\Routing\DelegatingLoader($this->get('controller_name_converter'), NULL, $b);
    }
 /**
  * Gets the 'routing.loader.real' service.
  *
  * This service is shared.
  * This method always returns the same instance of the service.
  *
  * @return Symfony\Bundle\FrameworkBundle\Routing\DelegatingLoader A Symfony\Bundle\FrameworkBundle\Routing\DelegatingLoader instance.
  */
 protected function getRouting_Loader_RealService()
 {
     $a = $this->get('file_locator');
     $b = $this->get('annotations.reader');
     $c = $this->get('annotations.configuration_reader');
     $d = new \Sensio\Bundle\FrameworkExtraBundle\Routing\AnnotatedRouteControllerLoader($b, $c);
     $d->setRouteAnnotationClass('Sensio\\Bundle\\FrameworkExtraBundle\\Configuration\\Route');
     $d->setRoutesAnnotationClass('Sensio\\Bundle\\FrameworkExtraBundle\\Configuration\\Routes');
     $e = new \Symfony\Component\Config\Loader\LoaderResolver();
     $e->addLoader(new \Symfony\Component\Routing\Loader\XmlFileLoader($a));
     $e->addLoader(new \Symfony\Component\Routing\Loader\YamlFileLoader($a));
     $e->addLoader(new \Symfony\Component\Routing\Loader\PhpFileLoader($a));
     $e->addLoader(new \Symfony\Bundle\AsseticBundle\Routing\AsseticLoader($this->get('assetic.asset_manager')));
     $e->addLoader(new \Symfony\Component\Routing\Loader\AnnotationGlobLoader($a, $d));
     $e->addLoader(new \Symfony\Component\Routing\Loader\AnnotationDirectoryLoader($a, $d));
     $e->addLoader(new \Symfony\Component\Routing\Loader\AnnotationFileLoader($a, $d));
     $e->addLoader($d);
     return $this->services['routing.loader.real'] = new \Symfony\Bundle\FrameworkBundle\Routing\DelegatingLoader($this->get('controller_name_converter'), $this->get('monolog.logger.router'), $e);
 }
 /**
  * Gets the 'routing.loader' service.
  *
  * This service is shared.
  * This method always returns the same instance of the service.
  *
  * @return \Symfony\Bundle\FrameworkBundle\Routing\DelegatingLoader A Symfony\Bundle\FrameworkBundle\Routing\DelegatingLoader instance
  */
 protected function getRouting_LoaderService()
 {
     $a = $this->get('controller_name_converter');
     $b = $this->get('file_locator');
     $c = $this->get('annotation_reader');
     $d = new \Sensio\Bundle\FrameworkExtraBundle\Routing\AnnotatedRouteControllerLoader($c);
     $e = new \FOS\RestBundle\Routing\Loader\RestRouteProcessor();
     $f = new \Symfony\Component\Config\Loader\LoaderResolver();
     $f->addLoader(new \Symfony\Component\Routing\Loader\XmlFileLoader($b));
     $f->addLoader(new \Symfony\Component\Routing\Loader\YamlFileLoader($b));
     $f->addLoader(new \Symfony\Component\Routing\Loader\PhpFileLoader($b));
     $f->addLoader(new \Symfony\Component\Routing\Loader\DirectoryLoader($b));
     $f->addLoader(new \Symfony\Component\Routing\Loader\DependencyInjection\ServiceRouterLoader($this));
     $f->addLoader(new \Symfony\Component\Routing\Loader\AnnotationDirectoryLoader($b, $d));
     $f->addLoader(new \Symfony\Component\Routing\Loader\AnnotationFileLoader($b, $d));
     $f->addLoader($d);
     $f->addLoader(new \FOS\RestBundle\Routing\Loader\DirectoryRouteLoader($b, $e));
     $f->addLoader(new \FOS\RestBundle\Routing\Loader\RestRouteLoader($this, $b, $a, new \FOS\RestBundle\Routing\Loader\Reader\RestControllerReader(new \FOS\RestBundle\Routing\Loader\Reader\RestActionReader($c, $this->get('fos_rest.request.param_fetcher.reader'), $this->get('fos_rest.inflector'), false, array('json' => false, 'html' => true)), $c), 'json'));
     $f->addLoader(new \FOS\RestBundle\Routing\Loader\RestYamlCollectionLoader($b, $e, false, array('json' => false, 'html' => true), 'json'));
     $f->addLoader(new \FOS\RestBundle\Routing\Loader\RestXmlCollectionLoader($b, $e, false, array('json' => false, 'html' => true), 'json'));
     return $this->services['routing.loader'] = new \Symfony\Bundle\FrameworkBundle\Routing\DelegatingLoader($a, $f);
 }
 /**
  * Gets the 'routing.loader' service.
  *
  * This service is shared.
  * This method always returns the same instance of the service.
  *
  * @return \Symfony\Bundle\FrameworkBundle\Routing\DelegatingLoader A Symfony\Bundle\FrameworkBundle\Routing\DelegatingLoader instance.
  */
 protected function getRouting_LoaderService()
 {
     $a = $this->get('file_locator');
     $b = new \Symfony\Component\Config\Loader\LoaderResolver();
     $b->addLoader(new \Symfony\Component\Routing\Loader\XmlFileLoader($a));
     $b->addLoader(new \Symfony\Component\Routing\Loader\YamlFileLoader($a));
     $b->addLoader(new \Symfony\Component\Routing\Loader\PhpFileLoader($a));
     $b->addLoader(new \Symfony\Bundle\AsseticBundle\Routing\AsseticLoader($this->get('assetic.asset_manager')));
     $b->addLoader($this->get('fos_rest.routing.loader.controller'));
     $b->addLoader($this->get('fos_rest.routing.loader.yaml_collection'));
     $b->addLoader($this->get('fos_rest.routing.loader.xml_collection'));
     $b->addLoader($this->get('sonata.admin.route_loader'));
     $b->addLoader($this->get('nordcode_admin_page_board.routes_loader'));
     return $this->services['routing.loader'] = new \Symfony\Bundle\FrameworkBundle\Routing\DelegatingLoader($this->get('controller_name_converter'), $this->get('monolog.logger.router', ContainerInterface::NULL_ON_INVALID_REFERENCE), $b);
 }