Completed
Branch master (5c1190)
by Dan
04:59
created
Category
src/SixtyNine/DataTypes/Box.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -107,12 +107,12 @@
 block discarded – undo
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
         }
Please login to merge, or discard this patch.