vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php line 40

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\Component\HttpKernel\Controller;
  11. use Psr\Container\ContainerInterface;
  12. use Psr\Log\LoggerInterface;
  13. use Symfony\Component\DependencyInjection\Container;
  14. /**
  15.  * A controller resolver searching for a controller in a psr-11 container when using the "service:method" notation.
  16.  *
  17.  * @author Fabien Potencier <fabien@symfony.com>
  18.  * @author Maxime Steinhausser <maxime.steinhausser@gmail.com>
  19.  */
  20. class ContainerControllerResolver extends ControllerResolver {
  21.     protected $container;
  22.     public function __construct(ContainerInterface $containerLoggerInterface $logger null) {
  23.         $this->container $container;
  24.         parent::__construct($logger);
  25.     }
  26.     protected function createController($controller) {
  27.         if (=== substr_count($controller':')) {
  28.             $controller str_replace(':''::'$controller);
  29.             // TODO deprecate this in 5.1
  30.         }
  31.         return parent::createController($controller);
  32.     }
  33.     /**
  34.      * {@inheritdoc}
  35.      */
  36.     protected function instantiateController($class) {
  37.         if ($this->container->has($class)) {
  38.             return $this->container->get($class);
  39.         }
  40.         try {
  41.             return parent::instantiateController($class);
  42.         } catch (\Error $e) {
  43.             
  44.         }
  45.         $this->throwExceptionIfControllerWasRemoved($class$e);
  46.         if ($e instanceof \ArgumentCountError) {
  47.             throw new \InvalidArgumentException(sprintf('Controller "%s" has required constructor arguments and does not exist in the container. Did you forget to define such a service?'$class), 0$e);
  48.         }
  49.         throw new \InvalidArgumentException(sprintf('Controller "%s" does neither exist as service nor as class'$class), 0$e);
  50.     }
  51.     private function throwExceptionIfControllerWasRemoved(string $controller, \Throwable $previous) {
  52.         if ($this->container instanceof Container && isset($this->container->getRemovedIds()[$controller])) {
  53.             throw new \InvalidArgumentException(sprintf('Controller "%s" cannot be fetched from the container because it is private. Did you forget to tag the service with "controller.service_arguments"?'$controller), 0$previous);
  54.         }
  55.     }
  56. }