Passed
Push — main ( e5a85d...619edc )
by Michiel
07:04
created
src/Phing/Task/Ext/Coverage/CoverageReportTask.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -427,7 +427,7 @@  discard block
 block discarded – undo
427 427
                 $statementcount = count(
428 428
                     array_filter(
429 429
                         $coverageInformation,
430
-                        function ($var) {
430
+                        function($var) {
431 431
                             return ($var != -2);
432 432
                         }
433 433
                     )
@@ -436,7 +436,7 @@  discard block
 block discarded – undo
436 436
                 $statementscovered = count(
437 437
                     array_filter(
438 438
                         $coverageInformation,
439
-                        function ($var) {
439
+                        function($var) {
440 440
                             return ($var >= 0);
441 441
                         }
442 442
                     )
Please login to merge, or discard this patch.