Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
25 | 22 | public function __construct(array $valueOrValues) |
|
26 | { |
||
27 | 22 | if ($this->checkValuePresence($valueOrValues)) { |
|
28 | // Convert empty values to null |
||
29 | 22 | $value = $valueOrValues['value'] ?? null; |
|
30 | |||
31 | // Always store array |
||
32 | 22 | $this->collection = is_array($value) ? $value : [$value]; |
|
33 | } else { |
||
34 | 1 | throw new \InvalidArgumentException('Only string or array is allowed'); |
|
35 | } |
||
36 | 22 | } |
|
37 | |||
50 |