vendor/symfony/security-bundle/Debug/WrappedLazyListener.php line 48

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\HttpFoundation\Request;
  12. use Symfony\Component\HttpKernel\Event\RequestEvent;
  13. use Symfony\Component\Security\Core\Exception\LazyResponseException;
  14. use Symfony\Component\Security\Http\Firewall\AbstractListener;
  15. /**
  16.  * Wraps a lazy security listener.
  17.  *
  18.  * @author Robin Chalas <robin.chalas@gmail.com>
  19.  *
  20.  * @internal
  21.  */
  22. final class WrappedLazyListener extends AbstractListener
  23. {
  24.     use TraceableListenerTrait;
  25.     public function __construct(AbstractListener $listener)
  26.     {
  27.         $this->listener $listener;
  28.     }
  29.     public function supports(Request $request): ?bool
  30.     {
  31.         return $this->listener->supports($request);
  32.     }
  33.     /**
  34.      * {@inheritdoc}
  35.      */
  36.     public function authenticate(RequestEvent $event)
  37.     {
  38.         $startTime microtime(true);
  39.         try {
  40.             $ret $this->listener->authenticate($event);
  41.         } catch (LazyResponseException $e) {
  42.             $this->response $e->getResponse();
  43.             throw $e;
  44.         } finally {
  45.             $this->time microtime(true) - $startTime;
  46.         }
  47.         $this->response $event->getResponse();
  48.         return $ret;
  49.     }
  50. }