Completed
Push — master ( ed4867...5e36a9 )
by Jan Philipp
14s
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;
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
     {
216 216
         $countConfigFiles = count($configFiles);
217 217
         for ($i = 0; $i < $countConfigFiles; $i++) {
218
-            $configFiles[$i] = str_replace($this->rootDirectory."/", "", $configFiles[$i]);
218
+            $configFiles[$i] = str_replace($this->rootDirectory . "/", "", $configFiles[$i]);
219 219
         }
220 220
 
221 221
         if (count($configFiles) == 1) {
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
 
252 252
         $scripts = $scriptFinder->getAllScripts();
253 253
 
254
-        $commands = array_map(function (Script $script) {
254
+        $commands = array_map(function(Script $script) {
255 255
             return $script->getName();
256 256
         }, $scripts);
257 257
 
Please login to merge, or discard this patch.