Completed
Push — master ( 74cc4f...1ff922 )
by Jan Philipp
16s
created
src/Application/Application.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 
4 4
 namespace Shopware\Psh\Application;
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
         $scriptNames = $this->extractScriptNames($inputArgs);
73 73
         if (count($scriptNames) > 0 && $scriptNames[0] === 'bash_autocompletion_dump') {
74 74
             $scripts = $scriptFinder->getAllScripts();
75
-            $commands = array_map(function (Script $script) {
75
+            $commands = array_map(function(Script $script) {
76 76
                 return $script->getName();
77 77
             }, $scripts);
78 78
             echo implode(' ', $commands);
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
         foreach ($scripts as $script) {
137 137
             if ($scriptEnvironment !== $script->getEnvironment()) {
138 138
                 $scriptEnvironment = $script->getEnvironment();
139
-                $this->cliMate->green()->br()->bold(($scriptEnvironment ?? 'default'). ':');
139
+                $this->cliMate->green()->br()->bold(($scriptEnvironment ?? 'default') . ':');
140 140
             }
141 141
 
142 142
             $padding
Please login to merge, or discard this patch.