@@ -26,7 +26,7 @@ |
||
26 | 26 | */ |
27 | 27 | public static function decode($string) |
28 | 28 | { |
29 | - if (! is_string($string)) { |
|
29 | + if (!is_string($string)) { |
|
30 | 30 | throw new JsonException('Json decode parameter must be a string'); |
31 | 31 | } |
32 | 32 |
@@ -28,7 +28,7 @@ |
||
28 | 28 | } catch (JsonException $exception) { |
29 | 29 | throw new InvalidConfigException('Unable to parse JSON config'); |
30 | 30 | } |
31 | - if (! is_array($configArray)) { |
|
31 | + if (!is_array($configArray)) { |
|
32 | 32 | throw new InvalidConfigException('Invalid JSON config'); |
33 | 33 | } |
34 | 34 | return $configArray; |