@@ -68,8 +68,8 @@ |
||
| 68 | 68 | |
| 69 | 69 | $this->assertEquals(1, $kdTree->points()->count()); |
| 70 | 70 | $kdTree->put(new Point(1, 1)) |
| 71 | - ->put(new Point(2, 2)) |
|
| 72 | - ->put(new Point(3, 3)); |
|
| 71 | + ->put(new Point(2, 2)) |
|
| 72 | + ->put(new Point(3, 3)); |
|
| 73 | 73 | |
| 74 | 74 | $kdTree->delete(new Point(2, 2)); |
| 75 | 75 | |
@@ -34,7 +34,7 @@ |
||
| 34 | 34 | public function __construct(KDTreeInterface $tree) |
| 35 | 35 | { |
| 36 | 36 | $this->tree = $tree; |
| 37 | - $this->bestDistance = (float)PHP_INT_MAX; |
|
| 37 | + $this->bestDistance = (float) PHP_INT_MAX; |
|
| 38 | 38 | } |
| 39 | 39 | |
| 40 | 40 | /** |