vendor/symfony/framework-bundle/Controller/ControllerResolver.php line 24

  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\Controller;
  11. use Symfony\Component\DependencyInjection\ContainerAwareInterface;
  12. use Symfony\Component\HttpKernel\Controller\ContainerControllerResolver;
  13. /**
  14.  * @author Fabien Potencier <fabien@symfony.com>
  15.  *
  16.  * @final
  17.  */
  18. class ControllerResolver extends ContainerControllerResolver
  19. {
  20.     protected function instantiateController(string $class): object
  21.     {
  22.         $controller parent::instantiateController($class);
  23.         if ($controller instanceof ContainerAwareInterface) {
  24.             $controller->setContainer($this->container);
  25.         }
  26.         if ($controller instanceof AbstractController) {
  27.             if (null === $previousContainer $controller->setContainer($this->container)) {
  28.                 throw new \LogicException(sprintf('"%s" has no container set, did you forget to define it as a service subscriber?'$class));
  29.             } else {
  30.                 $controller->setContainer($previousContainer);
  31.             }
  32.         }
  33.         return $controller;
  34.     }
  35. }