@@ -43,7 +43,7 @@ |
||
43 | 43 | |
44 | 44 | protected static function validated(mixed $value, string $type, string $key): mixed |
45 | 45 | { |
46 | - if (! ("is_$type")($value)) { |
|
46 | + if (!("is_$type")($value)) { |
|
47 | 47 | throw new TypeError(sprintf('%s(): Config value %s must be of type %s, %s given', __METHOD__, $key, $type, gettype($value))); |
48 | 48 | } |
49 | 49 |