Passed
Push — master ( 42c4d1...80535d )
by Allan
02:39 queued 12s
created
src/Composer/Commands/ListCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
                 $patchListUpdater->updateStatuses($excludedPatches, 'excluded')
182 182
             );
183 183
 
184
-            array_walk($patches, function (array &$group) {
184
+            array_walk($patches, function(array &$group) {
185 185
                 ksort($group);
186 186
             }, $patches);
187 187
         }
@@ -205,7 +205,7 @@  discard block
 block discarded – undo
205 205
             $composer->getConfig()->get(\Vaimo\ComposerPatches\Composer\ConfigKeys::VENDOR_DIR)
206 206
         );
207 207
 
208
-        $componentOverrides =  array(
208
+        $componentOverrides = array(
209 209
             'constraints' => false,
210 210
             'platform' => false,
211 211
             'local-exclude' => false,
Please login to merge, or discard this patch.
src/Console/OutputAnalyser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
     {
12 12
         $patternsWithResults = array_filter(
13 13
             $failureMessages,
14
-            function ($pattern) use ($output) {
14
+            function($pattern) use ($output) {
15 15
                 return $pattern && preg_match($pattern, $output);
16 16
             }
17 17
         );
Please login to merge, or discard this patch.