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