mirror of
https://github.com/Seldaek/monolog.git
synced 2025-08-05 04:37:38 +02:00
Update TagProcessor.php
Array merge was unnecessary since it is not set anywhere else than here.
This commit is contained in:
@@ -27,10 +27,7 @@ class TagProcessor
|
|||||||
|
|
||||||
public function __invoke(array $record)
|
public function __invoke(array $record)
|
||||||
{
|
{
|
||||||
$record['tags'] = array_merge(
|
$record['tags'] = $this->tags;
|
||||||
$this->tags,
|
|
||||||
$record['tags']
|
|
||||||
);
|
|
||||||
|
|
||||||
return $record;
|
return $record;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user