Passed
Push — main ( 5d15cf...56ab68 )
by Siad
06:20
created
tests/Phing/Task/Optional/SonarConfigurationFileParserTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
         $fh = fopen($tmpFile, 'w');
180 180
 
181 181
         if (false !== $fh) {
182
-            register_shutdown_function(static function () use ($tmpFile) {
182
+            register_shutdown_function(static function() use ($tmpFile) {
183 183
                 unlink($tmpFile);
184 184
             });
185 185
 
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
 
212 212
         $fh = fopen($tmpFile, 'w');
213 213
         if (false !== $fh) {
214
-            register_shutdown_function(static function () use ($tmpFile) {
214
+            register_shutdown_function(static function() use ($tmpFile) {
215 215
                 unlink($tmpFile);
216 216
             });
217 217
 
Please login to merge, or discard this patch.
tests/Phing/Task/System/PhpEvalTaskTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
         );
34 34
 
35 35
         $arraySum = '';
36
-        array_walk_recursive($arr, static function ($item) use (&$arraySum) {
36
+        array_walk_recursive($arr, static function($item) use (&$arraySum) {
37 37
             $arraySum .= $item;
38 38
         });
39 39
 
Please login to merge, or discard this patch.
src/Phing/Task/System/XmlLintTask.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -216,7 +216,7 @@
 block discarded – undo
216 216
         }
217 217
         $return .= trim($error->message);
218 218
         if ($error->file) {
219
-            $return .=    " in $error->file";
219
+            $return .= " in $error->file";
220 220
         }
221 221
         $return .= " on line $error->line";
222 222
 
Please login to merge, or discard this patch.