Passed
Branch master (b8d7ce)
by João Roberto P.
02:30
created
Category
src/Hooks/BaseHook.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function retrieveCommitedFiles()
15 15
     {
16
-        $output = [];
16
+        $output = [ ];
17 17
 
18 18
         exec('git diff --cached --name-only --diff-filter=ACMR', $output);
19 19
 
Please login to merge, or discard this patch.
src/Pipelines/LintStage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
                 continue;
26 26
             }
27 27
 
28
-            $lintOutput = [];
28
+            $lintOutput = [ ];
29 29
             exec('php -l '.escapeshellarg($fileName), $lintOutput, $return);
30 30
         }
31 31
 
Please login to merge, or discard this patch.
src/Pipelines/CsFixerStage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
                 continue;
27 27
             }
28 28
 
29
-            $csOutput = [];
29
+            $csOutput = [ ];
30 30
             exec(__DIR__.'/../../../../../vendor/bin/php-cs-fixer --using-cache=no fix '.escapeshellarg($fileName), $csOutput, $return);
31 31
             exec("git add {$fileName}");
32 32
         }
Please login to merge, or discard this patch.