vendor/symfony/symfony/src/Symfony/Bundle/FrameworkBundle/EventListener/ResolveControllerNameSubscriber.php line 33

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Bundle\FrameworkBundle\EventListener;
  11. use Symfony\Bundle\FrameworkBundle\Controller\ControllerNameParser;
  12. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  13. use Symfony\Component\HttpKernel\Event\GetResponseEvent;
  14. use Symfony\Component\HttpKernel\KernelEvents;
  15. /**
  16.  * Guarantees that the _controller key is parsed into its final format.
  17.  *
  18.  * @author Ryan Weaver <ryan@knpuniversity.com>
  19.  */
  20. class ResolveControllerNameSubscriber implements EventSubscriberInterface
  21. {
  22.     private $parser;
  23.     public function __construct(ControllerNameParser $parser)
  24.     {
  25.         $this->parser $parser;
  26.     }
  27.     public function onKernelRequest(GetResponseEvent $event)
  28.     {
  29.         $controller $event->getRequest()->attributes->get('_controller');
  30.         if (is_string($controller) && false === strpos($controller'::') && === substr_count($controller':')) {
  31.             // controller in the a:b:c notation then
  32.             $event->getRequest()->attributes->set('_controller'$this->parser->parse($controller));
  33.         }
  34.     }
  35.     public static function getSubscribedEvents()
  36.     {
  37.         return array(
  38.             KernelEvents::REQUEST => array('onKernelRequest'24),
  39.         );
  40.     }
  41. }