@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | // Order the bounds. |
76 | 76 | usort( |
77 | 77 | $bounds, |
78 | - static function (array $d1, array $d2) { |
|
78 | + static function(array $d1, array $d2) { |
|
79 | 79 | return ($d1[0] < $d2[0]) ? -1 : 1; |
80 | 80 | } |
81 | 81 | ); |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | { |
97 | 97 | $discreteValues = array_filter( |
98 | 98 | $intervals, |
99 | - static function ($interval) { |
|
99 | + static function($interval) { |
|
100 | 100 | return $interval[0] === $interval[1]; |
101 | 101 | } |
102 | 102 | ); |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | |
142 | 142 | // If the current bound is the same as the next, which happens when multiple intervals |
143 | 143 | // begin or end at the same time, skip interval creation. |
144 | - if ($curBoundValue === $nextBoundValue){ |
|
144 | + if ($curBoundValue === $nextBoundValue) { |
|
145 | 145 | continue; |
146 | 146 | } |
147 | 147 |