Total Complexity | 4 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
7 | final class PsrAuthLogger implements AuthLoggerInterface |
||
8 | { |
||
9 | 7 | public function __construct( |
|
10 | private LoggerInterface $logger |
||
11 | 7 | ) {} |
|
12 | |||
13 | 3 | public function info(string $message, ?array $context = null): void |
|
16 | } |
||
17 | |||
18 | 2 | public function debug(string $message, ?array $context = null): void |
|
21 | } |
||
22 | |||
23 | 2 | public function warning(string $message, ?array $context = null): void |
|
28 |