| Conditions | 1 |
| Paths | 1 |
| Total Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 39 | 10 | protected static function validate(array $config): void |
|
| 40 | { |
||
| 41 | 10 | ConfigAssertion::notEmptyString($config[self::NAME], "'" . self::NAME . "' is required and cannot be empty"); |
|
| 42 | 10 | ConfigAssertion::isArray($config[self::PARAMETERS], "'" . self::PARAMETERS . "' must be an array"); |
|
| 43 | 10 | } |
|
| 44 | |||
| 55 |