vendor/monolog/monolog/src/Monolog/Processor/TagProcessor.php line 19

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Monolog package.
  4.  *
  5.  * (c) Jordi Boggiano <j.boggiano@seld.be>
  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 Monolog\Processor;
  11. /**
  12.  * Adds a tags array into record
  13.  *
  14.  * @author Martijn Riemers
  15.  */
  16. class TagProcessor implements ProcessorInterface
  17. {
  18.     private $tags;
  19.     public function __construct(array $tags = array())
  20.     {
  21.         $this->setTags($tags);
  22.     }
  23.     public function addTags(array $tags = array())
  24.     {
  25.         $this->tags array_merge($this->tags$tags);
  26.     }
  27.     public function setTags(array $tags = array())
  28.     {
  29.         $this->tags $tags;
  30.     }
  31.     public function __invoke(array $record)
  32.     {
  33.         $record['extra']['tags'] = $this->tags;
  34.         return $record;
  35.     }
  36. }