| 1 | <?php |
||
| 20 | class SimpleStrategy extends BaseStrategy { |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param Exception $exception |
||
| 24 | * @return string |
||
| 25 | * @throws ErrorHandlerException |
||
| 26 | */ |
||
| 27 | protected function identifyExceptionType(Exception $exception) { |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @param string $type |
||
| 40 | * @param Exception $exception |
||
| 41 | * @return bool |
||
| 42 | */ |
||
| 43 | protected function run($type, Exception $exception) { |
||
| 54 | |||
| 55 | |||
| 56 | /** |
||
| 57 | * {@inheritdoc} |
||
| 58 | * @throws ErrorHandlerException |
||
| 59 | */ |
||
| 60 | public function handle(Exception $exception) { |
||
| 66 | } |
||
| 67 |