VoidLogger::emergency()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 1
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 2
1
<?php
2
3
namespace CrazyGoat\Octophpus;
4
5
use Psr\Log\LoggerInterface;
6
7
class VoidLogger implements LoggerInterface
8
{
9
    public function emergency($message, array $context = array()) {}
10
11
    public function alert($message, array $context = array()) {}
12
13
    public function critical($message, array $context = array()) {}
14
15
    public function error($message, array $context = array()) {}
16
17
    public function warning($message, array $context = array()) {}
18
19
    public function notice($message, array $context = array()) {}
20
21
    public function info($message, array $context = array()) {}
22
23
    public function debug($message, array $context = array()) {}
24
25
    public function log($level, $message, array $context = array()) {}
26
}