vendor/symfony/http-kernel/EventListener/StreamedResponseListener.php line 30

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\EventListener;
  11. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  12. use Symfony\Component\HttpFoundation\StreamedResponse;
  13. use Symfony\Component\HttpKernel\Event\FilterResponseEvent;
  14. use Symfony\Component\HttpKernel\KernelEvents;
  15. /**
  16.  * StreamedResponseListener is responsible for sending the Response
  17.  * to the client.
  18.  *
  19.  * @author Fabien Potencier <fabien@symfony.com>
  20.  */
  21. class StreamedResponseListener implements EventSubscriberInterface {
  22.     /**
  23.      * Filters the Response.
  24.      */
  25.     public function onKernelResponse(FilterResponseEvent $event) {
  26.         if (!$event->isMasterRequest()) {
  27.             return;
  28.         }
  29.         $response $event->getResponse();
  30.         if ($response instanceof StreamedResponse) {
  31.             $response->send();
  32.         }
  33.     }
  34.     public static function getSubscribedEvents() {
  35.         return [
  36.             KernelEvents::RESPONSE => ['onKernelResponse', -1024],
  37.         ];
  38.     }
  39. }