Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
38 | 52 | public function setMode($mode) |
|
39 | { |
||
40 | 52 | if (!in_array($mode, ['article', 'product', 'image', 'auto'])) { |
|
41 | 4 | $error = 'Only "article", "product" and "image" modes supported.'; |
|
42 | 4 | throw new \InvalidArgumentException($error); |
|
43 | } |
||
44 | 48 | $this->otherOptions['mode'] = $mode; |
|
45 | |||
46 | 48 | return $this; |
|
47 | } |
||
48 | |||
50 |