@@ -107,12 +107,12 @@ |
||
107 | 107 | */ |
108 | 108 | public function intersects(Box $box, $strict = true) |
109 | 109 | { |
110 | - $comparator = function ($x, $y) { |
|
110 | + $comparator = function($x, $y) { |
|
111 | 111 | return $x < $y; |
112 | 112 | }; |
113 | 113 | |
114 | 114 | if (!$strict) { |
115 | - $comparator = function ($x, $y) { |
|
115 | + $comparator = function($x, $y) { |
|
116 | 116 | return $x <= $y; |
117 | 117 | }; |
118 | 118 | } |