Test Failed
Push — master ( e8c600...c028a7 )
by Arkadiusz
02:50
created
src/Phpml/Classification/Linear/Perceptron.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 namespace Phpml\Classification\Linear;
6 6
 
7 7
 use Phpml\Helper\Predictable;
8
-use Phpml\Helper\Trainable;
9 8
 use Phpml\Classification\Classifier;
10 9
 use Phpml\Preprocessing\Normalizer;
11 10
 
Please login to merge, or discard this patch.
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
      */
22 22
     protected static $errorFunction = 'outputClass';
23 23
 
24
-   /**
24
+    /**
25 25
      * @var array
26 26
      */
27 27
     protected $samples = [];
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
         $this->threshold = $threshold;
112 112
     }
113 113
 
114
-   /**
114
+    /**
115 115
      * @param array $samples
116 116
      * @param array $targets
117 117
      */
Please login to merge, or discard this patch.