Passed
Push — master ( ef5e79...90f1a9 )
by Andrii
01:33
created
tests/Structure/KDTreeTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -68,8 +68,8 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Search/NearestSearch.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.