Passed
Push — master ( d2e487...b38026 )
by Tobias
05:31
created

DummyLogger::info()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 0
c 1
b 0
f 0
nc 1
nop 2
dl 0
loc 2
rs 10
1
<?php
2
3
/*
4
 * This file is part of the PHP Translation package.
5
 *
6
 * (c) PHP Translation team <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Translation\Bundle\Tests\Functional\app\Service;
13
14
use Psr\Log\LoggerInterface;
15
16
class DummyLogger implements LoggerInterface
17
{
18
    public function emergency($message, array $context = []): void
19
    {
20
    }
21
22
    public function alert($message, array $context = []): void
23
    {
24
    }
25
26
    public function critical($message, array $context = []): void
27
    {
28
    }
29
30
    public function error($message, array $context = []): void
31
    {
32
    }
33
34
    public function warning($message, array $context = []): void
35
    {
36
    }
37
38
    public function notice($message, array $context = []): void
39
    {
40
    }
41
42
    public function info($message, array $context = []): void
43
    {
44
    }
45
46
    public function debug($message, array $context = []): void
47
    {
48
    }
49
50
    public function log($level, $message, array $context = []): void
51
    {
52
    }
53
}
54