vendor/symfony/monolog-bridge/Processor/WebProcessor.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\Bridge\Monolog\Processor;
  11. use Monolog\Processor\WebProcessor as BaseWebProcessor;
  12. use Symfony\Component\HttpKernel\Event\GetResponseEvent;
  13. /**
  14.  * WebProcessor override to read from the HttpFoundation's Request.
  15.  *
  16.  * @author Jordi Boggiano <j.boggiano@seld.be>
  17.  */
  18. class WebProcessor extends BaseWebProcessor
  19. {
  20.     public function __construct(array $extraFields null)
  21.     {
  22.         // Pass an empty array as the default null value would access $_SERVER
  23.         parent::__construct([], $extraFields);
  24.     }
  25.     public function onKernelRequest(GetResponseEvent $event)
  26.     {
  27.         if ($event->isMasterRequest()) {
  28.             $this->serverData $event->getRequest()->server->all();
  29.             $this->serverData['REMOTE_ADDR'] = $event->getRequest()->getClientIp();
  30.         }
  31.     }
  32. }