| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 2.0185 |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | 33 | public function __construct(string $status, array $errors = []) |
|
| 20 | { |
||
| 21 | 33 | if (!in_array($status, [self::STATUS_OK, self::STATUS_ERROR], true)) { |
|
| 22 | throw new InvalidArgumentException($status . ' is not valid validation result status'); |
||
| 23 | } |
||
| 24 | |||
| 25 | 33 | $this->status = $status; |
|
| 26 | 33 | $this->errors = $errors; |
|
| 27 | 33 | } |
|
| 28 | |||
| 39 |