vendor/symfony/security-bundle/Debug/TraceableFirewallListener.php line 35

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\Bundle\SecurityBundle\EventListener\FirewallListener;
  12. use Symfony\Component\HttpKernel\Event\RequestEvent;
  13. /**
  14.  * Firewall collecting called listeners.
  15.  *
  16.  * @author Robin Chalas <robin.chalas@gmail.com>
  17.  */
  18. final class TraceableFirewallListener extends FirewallListener
  19. {
  20.     private $wrappedListeners;
  21.     public function getWrappedListeners()
  22.     {
  23.         return $this->wrappedListeners;
  24.     }
  25.     protected function callListeners(RequestEvent $eventiterable $listeners)
  26.     {
  27.         foreach ($listeners as $listener) {
  28.             $wrappedListener = new WrappedListener($listener);
  29.             $wrappedListener($event);
  30.             $this->wrappedListeners[] = $wrappedListener->getInfo();
  31.             if ($event->hasResponse()) {
  32.                 break;
  33.             }
  34.         }
  35.     }
  36. }