Passed
Push — master ( 1aa205...fd17ea )
by KwangSeob
04:24 queued 02:09
created

NoOperationMonologHandler   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 1
dl 0
loc 11
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A write() 0 2 1
1
<?php
2
3
namespace JiraRestApi;
4
5
use Monolog\Handler\AbstractProcessingHandler;
6
7
class NoOperationMonologHandler extends AbstractProcessingHandler
8
{
9
    /**
10
     * Writes the record down to the log of the implementing handler.
11
     *
12
     * @param array $record
13
     *
14
     * @return void
15
     */
16
    protected function write(array $record)
17
    {
18
        // do nothing
19
    }
20
}
21