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