Passed
Push — master ( c0463a...e1854d )
by Arkadiusz
02:54
created
src/Phpml/Clustering/KMeans/Cluster.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -138,8 +138,8 @@
 block discarded – undo
138 138
     }
139 139
     
140 140
     /**
141
-    * @param array $newCoordinates
142
-    */
141
+     * @param array $newCoordinates
142
+     */
143 143
     public function setCoordinates(array $newCoordinates)
144 144
     {
145 145
         $this->coordinates = $newCoordinates;
Please login to merge, or discard this patch.
src/Phpml/SupportVectorMachine/SupportVectorMachine.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -9,11 +9,11 @@
 block discarded – undo
9 9
 
10 10
 class SupportVectorMachine
11 11
 {
12
-	 use Trainable;
12
+        use Trainable;
13 13
 	 
14
-	 /**
15
-     * @var int
16
-     */
14
+        /**
15
+         * @var int
16
+         */
17 17
     private $type;
18 18
 
19 19
     /**
Please login to merge, or discard this patch.
src/Phpml/Classification/Linear/Perceptron.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
         return $this->trainByLabel($samples, $targets, $labels);
98 98
     }
99 99
 
100
-   /**
100
+    /**
101 101
      * @param array $samples
102 102
      * @param array $targets
103 103
      * @param array $labels
Please login to merge, or discard this patch.