Conditions | 5 |
Paths | 4 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 30 |
Changes | 0 |
1 | <?php |
||
28 | protected function checkStringArguments(array $arguments) |
||
29 | { |
||
30 | if (empty($arguments)) { |
||
31 | throw new InvalidCommandArgumentException($this, $arguments); |
||
32 | } |
||
33 | |||
34 | foreach ($arguments as $argument) { |
||
35 | if (!is_string($argument) || $argument === '') { |
||
36 | throw new InvalidCommandArgumentException($this, $arguments); |
||
37 | } |
||
38 | } |
||
39 | } |
||
40 | } |