Passed
Pull Request — master (#2)
by Koldo
02:20
created
src/Container/ClearConfigCacheCommandFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,6 +11,6 @@
 block discarded – undo
11 11
 {
12 12
     public function __invoke(ContainerInterface $container): ClearConfigCache
13 13
     {
14
-        return new ClearConfigCache((array)$container->get('config'));
14
+        return new ClearConfigCache((array) $container->get('config'));
15 15
     }
16 16
 }
Please login to merge, or discard this patch.
src/Application/Command/SetDevelopmentMode.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
101 101
 
102 102
         throw new \InvalidArgumentException(sprintf(
103 103
             'Invalid option %s given, dissable option value should be one of: %s, %s',
104
-            (string)$getOption,
104
+            (string) $getOption,
105 105
             implode(',', self::TRUE_OPTIONS),
106 106
             implode(',', self::FALSE_OPTIONS)
107 107
         ));
Please login to merge, or discard this patch.