Completed
Push — master ( de1433...6f8e5d )
by Nikita
02:37
created
src/Regression/PowerRegression.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
             $this->resultSequence[] = $coordinate;
55 55
         }
56 56
 
57
-        $this->equation = 'y = ' .  round($A, 2) .  '+ x^' . round($B, 2);
57
+        $this->equation = 'y = ' . round($A, 2) . '+ x^' . round($B, 2);
58 58
 
59 59
         $this->push();
60 60
     }
Please login to merge, or discard this patch.
src/Regression/LinearRegression.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
             $this->resultSequence[] = $coordinate;
57 57
         }
58 58
 
59
-        $this->equation = 'y = ' .  round($gradient, 1) .  'x + ' . round($intercept, 1);
59
+        $this->equation = 'y = ' . round($gradient, 1) . 'x + ' . round($intercept, 1);
60 60
 
61 61
         $this->push();
62 62
     }
Please login to merge, or discard this patch.