vendor/symfony/security-bundle/Debug/WrappedListener.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\Bundle\SecurityBundle\Debug;
  11. use Symfony\Component\HttpKernel\Event\RequestEvent;
  12. use Symfony\Component\VarDumper\Caster\ClassStub;
  13. /**
  14.  * Wraps a security listener for calls record.
  15.  *
  16.  * @author Robin Chalas <robin.chalas@gmail.com>
  17.  *
  18.  * @internal
  19.  */
  20. final class WrappedListener
  21. {
  22.     private $response;
  23.     private $listener;
  24.     private $time;
  25.     private $stub;
  26.     private static $hasVarDumper;
  27.     public function __construct(callable $listener)
  28.     {
  29.         $this->listener $listener;
  30.     }
  31.     public function __invoke(RequestEvent $event)
  32.     {
  33.         $startTime microtime(true);
  34.         ($this->listener)($event);
  35.         $this->time microtime(true) - $startTime;
  36.         $this->response $event->getResponse();
  37.     }
  38.     /**
  39.      * Proxies all method calls to the original listener.
  40.      */
  41.     public function __call(string $method, array $arguments)
  42.     {
  43.         return $this->listener->{$method}(...$arguments);
  44.     }
  45.     public function getWrappedListener(): callable
  46.     {
  47.         return $this->listener;
  48.     }
  49.     public function getInfo(): array
  50.     {
  51.         if (null !== $this->stub) {
  52.             // no-op
  53.         } elseif (self::$hasVarDumper ?? self::$hasVarDumper class_exists(ClassStub::class)) {
  54.             $this->stub ClassStub::wrapCallable($this->listener);
  55.         } elseif (\is_array($this->listener)) {
  56.             $this->stub = (\is_object($this->listener[0]) ? \get_class($this->listener[0]) : $this->listener[0]).'::'.$this->listener[1];
  57.         } elseif ($this->listener instanceof \Closure) {
  58.             $r = new \ReflectionFunction($this->listener);
  59.             if (false !== strpos($r->name'{closure}')) {
  60.                 $this->stub 'closure';
  61.             } elseif ($class $r->getClosureScopeClass()) {
  62.                 $this->stub $class->name.'::'.$r->name;
  63.             } else {
  64.                 $this->stub $r->name;
  65.             }
  66.         } elseif (\is_string($this->listener)) {
  67.             $this->stub $this->listener;
  68.         } else {
  69.             $this->stub = \get_class($this->listener).'::__invoke';
  70.         }
  71.         return [
  72.             'response' => $this->response,
  73.             'time' => $this->time,
  74.             'stub' => $this->stub,
  75.         ];
  76.     }
  77. }