Passed
Push — master ( a2b216...16e3eb )
by Koldo
02:29
created
src/Container/ShowContainerCommandFactory.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): ShowContainer
13 13
     {
14
-        return new ShowContainer((array)$container->get('config'));
14
+        return new ShowContainer((array) $container->get('config'));
15 15
     }
16 16
 }
Please login to merge, or discard this patch.
src/Container/ConsoleFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,14 +21,14 @@
 block discarded – undo
21 21
         $commands = $config['commands'] ?? [];
22 22
         $lazyCommands = [];
23 23
         foreach ($commands as $name => $command) {
24
-            $lazyCommands[$name] = static function () use ($command, $container): Command {
24
+            $lazyCommands[$name] = static function() use ($command, $container): Command {
25 25
                 return $container->get($command);
26 26
             };
27 27
         }
28 28
         $console->setCommandLoader(new FactoryCommandLoader($lazyCommands));
29 29
         array_walk(
30 30
             $config['helper-sets'],
31
-            static function (string $helperSet) use ($console, $container): void {
31
+            static function(string $helperSet) use ($console, $container): void {
32 32
                 $console->setHelperSet($container->get($helperSet));
33 33
             }
34 34
         );
Please login to merge, or discard this patch.