Completed
Push — master ( 63a11a...de1fa2 )
by Jan Philipp
12s
created
src/Application/Application.php 1 patch
Spacing   +2 added lines, -2 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);
Please login to merge, or discard this patch.