| 1 | <?php |
||
| 7 | class FatalErrorParser extends AbstractParser implements JSONParserChainElementInterface |
||
| 8 | { |
||
| 9 | const TAG = 'fatal'; |
||
| 10 | const TITLE = 'Fatal Errors'; |
||
| 11 | const PARSING_REGEX = '/Fatal error(?s:.)*/'; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @param ProcessResultInterface $process |
||
| 15 | * |
||
| 16 | * @return bool True if chain should continue |
||
| 17 | */ |
||
| 18 | 11 | public function parsingFoundResult(ProcessResultInterface $process) |
|
| 28 | } |
||
| 29 |