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

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