Completed
Push — develop ( daf290...9a283c )
by Paul
02:03
created
src/Console/Application.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Util/Json.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Configuration/JsonConsoleConfigFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.