| Total Complexity | 3 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 17 | class Logger |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @param LoggerInterface $logger |
||
| 21 | */ |
||
| 22 | public function __construct(private LoggerInterface $logger) |
||
| 24 | } |
||
| 25 | |||
| 26 | public function info(string $message, array $context): void |
||
| 33 | ] |
||
| 34 | ); |
||
| 35 | } |
||
| 36 | |||
| 37 | public function error(string $message, Throwable $e = null): void |
||
| 48 |