Total Complexity | 9 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class PdfOptimizerLogger implements LoggerInterface |
||
10 | { |
||
11 | public function emergency(Stringable|string $message, array $context = []): void {} |
||
12 | |||
13 | public function alert(Stringable|string $message, array $context = []): void {} |
||
14 | |||
15 | public function critical(Stringable|string $message, array $context = []): void {} |
||
16 | |||
17 | public function error(Stringable|string $message, array $context = []): void {} |
||
18 | |||
19 | public function warning(Stringable|string $message, array $context = []): void {} |
||
20 | |||
21 | public function notice(Stringable|string $message, array $context = []): void {} |
||
22 | |||
23 | public function info(Stringable|string $message, array $context = []): void {} |
||
24 | |||
25 | public function debug(Stringable|string $message, array $context = []): void {} |
||
26 | |||
27 | public function log($level, Stringable|string $message, array $context = []): void {} |
||
28 | } |
||
29 |