Completed
Push — master ( f0a798...cf222b )
by Arkadiusz
02:58
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/Exception/MatrixException.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,6 +27,6 @@
 block discarded – undo
27 27
      */
28 28
     public static function singularMatrix()
29 29
     {
30
-       return new self('Matrix is singular');
30
+        return new self('Matrix is singular');
31 31
     }
32 32
 }
Please login to merge, or discard this patch.
src/Phpml/Classification/Linear/Perceptron.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
      */
21 21
     protected static $errorFunction = 'outputClass';
22 22
 
23
-   /**
23
+    /**
24 24
      * @var array
25 25
      */
26 26
     protected $samples = [];
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
         $this->maxIterations = $maxIterations;
79 79
     }
80 80
 
81
-   /**
81
+    /**
82 82
      * @param array $samples
83 83
      * @param array $targets
84 84
      */
Please login to merge, or discard this patch.