Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F1431691
TagProcessor.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
TagProcessor.php
View Options
<?php
declare
(
strict_types
=
1
);
/*
* This file is part of the Monolog package.
*
* (c) Jordi Boggiano <j.boggiano@seld.be>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace
Monolog\Processor
;
/**
* Adds a tags array into record
*
* @author Martijn Riemers
*/
class
TagProcessor
implements
ProcessorInterface
{
/** @var string[] */
private
$tags
;
/**
* @param string[] $tags
*/
public
function
__construct
(
array
$tags
=
[])
{
$this
->
setTags
(
$tags
);
}
/**
* @param string[] $tags
*/
public
function
addTags
(
array
$tags
=
[]):
self
{
$this
->
tags
=
array_merge
(
$this
->
tags
,
$tags
);
return
$this
;
}
/**
* @param string[] $tags
*/
public
function
setTags
(
array
$tags
=
[]):
self
{
$this
->
tags
=
$tags
;
return
$this
;
}
/**
* {@inheritDoc}
*/
public
function
__invoke
(
array
$record
):
array
{
$record
[
'extra'
][
'tags'
]
=
$this
->
tags
;
return
$record
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, May 16, 20:58 (1 d, 12 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
05/c0/39fc7dd42726ab3515da906f6387
Default Alt Text
TagProcessor.php (1 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment