vendor/symfony/monolog-bridge/Handler/ChromePhpHandler.php line 33

  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\Bridge\Monolog\Handler;
  11. use Monolog\Handler\ChromePHPHandler as BaseChromePhpHandler;
  12. use Symfony\Component\HttpFoundation\Response;
  13. use Symfony\Component\HttpKernel\Event\ResponseEvent;
  14. /**
  15.  * ChromePhpHandler.
  16.  *
  17.  * @author Christophe Coevoet <stof@notk.org>
  18.  *
  19.  * @final
  20.  */
  21. class ChromePhpHandler extends BaseChromePhpHandler
  22. {
  23.     private array $headers = [];
  24.     private Response $response;
  25.     /**
  26.      * Adds the headers to the response once it's created.
  27.      */
  28.     public function onKernelResponse(ResponseEvent $event)
  29.     {
  30.         if (!$event->isMainRequest()) {
  31.             return;
  32.         }
  33.         if (!preg_match(static::USER_AGENT_REGEX$event->getRequest()->headers->get('User-Agent'))) {
  34.             self::$sendHeaders false;
  35.             $this->headers = [];
  36.             return;
  37.         }
  38.         $this->response $event->getResponse();
  39.         foreach ($this->headers as $header => $content) {
  40.             $this->response->headers->set($header$content);
  41.         }
  42.         $this->headers = [];
  43.     }
  44.     protected function sendHeader($header$content): void
  45.     {
  46.         if (!self::$sendHeaders) {
  47.             return;
  48.         }
  49.         if (isset($this->response)) {
  50.             $this->response->headers->set($header$content);
  51.         } else {
  52.             $this->headers[$header] = $content;
  53.         }
  54.     }
  55.     /**
  56.      * Override default behavior since we check it in onKernelResponse.
  57.      */
  58.     protected function headersAccepted(): bool
  59.     {
  60.         return true;
  61.     }
  62. }