Completed
Push — develop ( 24fc91...a2e8a8 )
by Arkadiusz
02:58
created
src/Phpml/Math/Statistic/Correlation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
         $a2 = 0;
31 31
         $b2 = 0;
32 32
 
33
-        for ($i = 0;$i < $count;++$i) {
33
+        for ($i = 0; $i < $count; ++$i) {
34 34
             $a = $x[$i] - $meanX;
35 35
             $b = $y[$i] - $meanY;
36 36
             $axb = $axb + ($a * $b);
Please login to merge, or discard this patch.
src/Phpml/Classification/SupportVectorMachine.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->tolerance = $tolerance;
55 55
         $this->upperBound = $upperBound;
56 56
 
57
-        $this->binPath = realpath(implode(DIRECTORY_SEPARATOR, array(dirname(__FILE__), '..', '..', '..', 'bin'))) . DIRECTORY_SEPARATOR;
57
+        $this->binPath = realpath(implode(DIRECTORY_SEPARATOR, array(dirname(__FILE__), '..', '..', '..', 'bin'))).DIRECTORY_SEPARATOR;
58 58
     }
59 59
 
60 60
     /**
Please login to merge, or discard this patch.