GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

DummyLogger   A
last analyzed

Complexity

Total Complexity 9

Size/Duplication

Total Lines 38
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 9
lcom 0
cbo 0
dl 0
loc 38
rs 10
c 0
b 0
f 0

9 Methods

Rating   Name   Duplication   Size   Complexity  
A emergency() 0 3 1
A alert() 0 3 1
A critical() 0 3 1
A error() 0 3 1
A warning() 0 3 1
A notice() 0 3 1
A info() 0 3 1
A debug() 0 3 1
A log() 0 3 1
1
<?php
2
3
namespace Spatie\ImageOptimizer;
4
5
use Psr\Log\LoggerInterface;
6
7
class DummyLogger implements LoggerInterface
8
{
9
    public function emergency($message, array $context = [])
10
    {
11
    }
12
13
    public function alert($message, array $context = [])
14
    {
15
    }
16
17
    public function critical($message, array $context = [])
18
    {
19
    }
20
21
    public function error($message, array $context = [])
22
    {
23
    }
24
25
    public function warning($message, array $context = [])
26
    {
27
    }
28
29
    public function notice($message, array $context = [])
30
    {
31
    }
32
33
    public function info($message, array $context = [])
34
    {
35
    }
36
37
    public function debug($message, array $context = [])
38
    {
39
    }
40
41
    public function log($level, $message, array $context = [])
42
    {
43
    }
44
}
45