Total Complexity | 3 |
Total Lines | 12 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
5 | final class NullAuthLogger implements AuthLoggerInterface |
||
6 | { |
||
7 | 4 | public function info(string $message, ?array $context = null): void |
|
8 | { |
||
9 | 4 | } |
|
10 | |||
11 | 21 | public function debug(string $message, ?array $context = null): void |
|
12 | { |
||
13 | 21 | } |
|
14 | |||
15 | 3 | public function warning(string $message, ?array $context = null): void |
|
17 | 3 | } |
|
18 | } |
||
19 |