| 1 | <?php |
||
| 16 | final class ErrorLogger |
||
| 17 | { |
||
| 18 | /** @var LoggerInterface */ |
||
| 19 | private $logger; |
||
| 20 | |||
| 21 | /** @var AbstractAppMeta */ |
||
| 22 | private $appMeta; |
||
| 23 | |||
| 24 | public function __construct(LoggerInterface $logger, AbstractAppMeta $appMeta) |
||
| 29 | |||
| 30 | public function __invoke(Throwable $e, RouterMatch $request): string |
||
| 40 | } |
||
| 41 |