Test Failed
Push — master ( 0392db...83274b )
by Michiel
23:36
created
classes/phing/types/selectors/SizeSelector.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,8 +45,8 @@
 block discarded – undo
45 45
     private const VALUE_KEY = 'value';
46 46
     private const WHEN_KEY  = 'when';
47 47
     private const WHEN      = [-1 => 'less',
48
-                               0  => 'equal',
49
-                               1  => 'more',];
48
+                                0  => 'equal',
49
+                                1  => 'more',];
50 50
 
51 51
     public function __toString(): string
52 52
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
     private const WHEN_KEY  = 'when';
47 47
     private const WHEN      = [-1 => 'less',
48 48
                                0  => 'equal',
49
-                               1  => 'more',];
49
+                               1  => 'more', ];
50 50
 
51 51
     public function __toString(): string
52 52
     {
Please login to merge, or discard this patch.
tests/classes/phing/tasks/ext/sonar/SonarConfigurationFileParserTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
         $fh = fopen($tmpFile, 'w');
183 183
 
184 184
         if (false !== $fh) {
185
-            register_shutdown_function(function () use ($tmpFile) {
185
+            register_shutdown_function(function() use ($tmpFile) {
186 186
                 unlink($tmpFile);
187 187
             });
188 188
 
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
 
215 215
         $fh = fopen($tmpFile, 'w');
216 216
         if (false !== $fh) {
217
-            register_shutdown_function(function () use ($tmpFile) {
217
+            register_shutdown_function(function() use ($tmpFile) {
218 218
                 unlink($tmpFile);
219 219
             });
220 220
 
Please login to merge, or discard this patch.