vendor/symfony/http-kernel/EventListener/ResponseListener.php line 34

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\HttpKernel\Event\FilterResponseEvent;
  13. use Symfony\Component\HttpKernel\KernelEvents;
  14. /**
  15.  * ResponseListener fixes the Response headers based on the Request.
  16.  *
  17.  * @author Fabien Potencier <fabien@symfony.com>
  18.  */
  19. class ResponseListener implements EventSubscriberInterface {
  20.     private $charset;
  21.     public function __construct(string $charset) {
  22.         $this->charset $charset;
  23.     }
  24.     /**
  25.      * Filters the Response.
  26.      */
  27.     public function onKernelResponse(FilterResponseEvent $event) {
  28.         if (!$event->isMasterRequest()) {
  29.             return;
  30.         }
  31.         $response $event->getResponse();
  32.         if (null === $response->getCharset()) {
  33.             $response->setCharset($this->charset);
  34.         }
  35.         $response->prepare($event->getRequest());
  36.     }
  37.     public static function getSubscribedEvents() {
  38.         return [
  39.             KernelEvents::RESPONSE => 'onKernelResponse',
  40.         ];
  41.     }
  42. }