| Conditions | 4 |
| Paths | 4 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 6 | public static function init($data, $required = []) |
||
| 7 | { |
||
| 8 | if (!is_array($data)) { |
||
| 9 | throw new \InvalidArgumentException('Data is not an array'); |
||
| 10 | } |
||
| 11 | |||
| 12 | foreach ($required as $item) { |
||
| 13 | if (!isset($data[$item])) { |
||
| 14 | throw new \InvalidArgumentException(sprintf('Missing parameter: %s', $item)); |
||
| 15 | } |
||
| 19 |