| Conditions | 3 |
| Paths | 2 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 63 | public function setErrorMessage($errorMessage = null): self |
||
| 64 | { |
||
| 65 | if (! empty($errorMessage) && is_string($errorMessage)) { |
||
| 66 | $this->errorMessage = $errorMessage; |
||
| 67 | return $this; |
||
| 68 | } |
||
| 69 | throw new \Exception('Supplied argument must be non empty string', 1); |
||
| 70 | } |
||
| 82 |