| Total Complexity | 2 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | final class ThrowErrorExceptionPhpErrorHandler implements PhpErrorHandlerInterface |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * @param int $code |
||
| 27 | * @param string $message |
||
| 28 | * @param string $filename |
||
| 29 | * @param int $line |
||
| 30 | * |
||
| 31 | * @throws ErrorException |
||
| 32 | */ |
||
| 33 | 2 | public function handlePhpError(int $code, string $message, string $filename, int $line): void |
|
| 42 |