| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 38 | public function execute(Candidate $candidate) |
||
| 39 | { |
||
| 40 | $this->lastError = null; |
||
| 41 | $parsingResult = $this->parser->execute($candidate); |
||
| 42 | |||
| 43 | if (!empty($parsingResult)) { |
||
| 44 | $this->lastError = sprintf("Syntax error during processing of %s:\n%s", $candidate->getName(), $parsingResult); |
||
| 45 | |||
| 46 | return true; |
||
| 47 | } |
||
| 48 | |||
| 49 | return false; |
||
| 50 | } |
||
| 51 | |||
| 68 | } |