| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 37 | public function getFirstError() : OperationResult |
||
| 38 | { |
||
| 39 | $first = $this->getFirst(); |
||
| 40 | |||
| 41 | if($first) |
||
| 42 | { |
||
| 43 | return $first->getValidationResult(); |
||
| 44 | } |
||
| 45 | |||
| 46 | throw new Mailcode_Exception( |
||
| 47 | 'Cannot get first error, no errors present.', |
||
| 48 | '', |
||
| 49 | self::ERROR_NO_FIRST_ERROR_AVAILABLE |
||
| 50 | ); |
||
| 53 |