| Conditions | 4 |
| Paths | 3 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 4 |
| Changes | 0 | ||
| 1 | <?php |
||
| 40 | 7 | public function __construct(Array $values) |
|
| 41 | { |
||
| 42 | 7 | if (!isset($values['image'])) { |
|
| 43 | 1 | throw new InvalidArgumentException('Required value "image" is not present'); |
|
| 44 | } |
||
| 45 | |||
| 46 | 6 | if (!is_numeric($values['image']) && !is_string($values['image'])) { |
|
| 47 | 3 | throw new InvalidArgumentException("Image argument must be a slug or ID"); |
|
| 48 | } |
||
| 49 | 3 | $this->image = $values['image']; |
|
| 50 | 3 | } |
|
| 66 |