Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | final class ErrorHandler |
||
12 | { |
||
13 | /** |
||
14 | * Response factory instance |
||
15 | * |
||
16 | */ |
||
17 | private ResponseFactoryInterface $factory; |
||
18 | |||
19 | public function __construct(ResponseFactoryInterface $factory) |
||
20 | { |
||
21 | $this->factory = $factory; |
||
22 | } |
||
23 | |||
24 | public function __invoke(Throwable $e): ResponseInterface |
||
32 | } |
||
33 | } |
||
34 |