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