Completed
Push — master ( 7da6eb...f08cf3 )
by Victor
02:31 queued 12s
created
src/Flattener.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
         // Order the bounds.
78 78
         usort(
79 79
             $bounds,
80
-            static function (array $d1, array $d2) {
80
+            static function(array $d1, array $d2) {
81 81
                 return ($d1[0] < $d2[0]) ? -1 : 1;
82 82
             }
83 83
         );
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
     {
99 99
         $discreteValues = array_filter(
100 100
             $intervals,
101
-            static function ($interval) {
101
+            static function($interval) {
102 102
                 return $interval[0] === $interval[1];
103 103
             }
104 104
         );
Please login to merge, or discard this patch.