@@ -46,7 +46,7 @@ |
||
| 46 | 46 | */ |
| 47 | 47 | public function doRun(InputInterface $input, OutputInterface $output): int |
| 48 | 48 | { |
| 49 | - if (! $output->isQuiet()) { |
|
| 49 | + if (!$output->isQuiet()) { |
|
| 50 | 50 | $output->writeln("PhpUnitGen by Paul Thébaud.\n"); |
| 51 | 51 | } |
| 52 | 52 | |
@@ -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; |