Total Complexity | 5 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
13 | abstract class AbstractErrorProcessor implements \WebServCo\Framework\Interfaces\ErrorProcessorInterface |
||
14 | { |
||
15 | protected FileLoggerInterface $fileLogger; |
||
16 | |||
17 | abstract public function report(\Throwable $exception, ?string $reference = null): bool; |
||
18 | |||
19 | public function __construct() |
||
24 | ); |
||
25 | } |
||
26 | |||
27 | public function logException(\Throwable $exception): void |
||
42 |