Completed
Push — master ( 98dcb0...82187a )
by Stig
01:31
created
src/stojg/recommend/ArticleData.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,6 @@
 block discarded – undo
41 41
         'with', 'within', 'without', 'would', 'yet', 'you', 'your', 'yours', 'yourself', 'yourselves', 'the', ];
42 42
 
43 43
     /**
44
-     * @param array $set
45 44
      */
46 45
     public function __construct()
47 46
     {
Please login to merge, or discard this patch.
src/stojg/recommend/Data.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -59,6 +59,7 @@
 block discarded – undo
59 59
     /**
60 60
      * Find the nearest key that matching is closest to the item in the set.
61 61
      *
62
+     * @param string $for
62 63
      * @return string
63 64
      */
64 65
     public function findNearest($for, $strategy)
Please login to merge, or discard this patch.
tests/RecommenderTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -147,6 +147,9 @@
 block discarded – undo
147 147
         $this->assertEquals('eagle', $quantumNearest, 'readers of quantum should read eagle');
148 148
     }
149 149
 
150
+    /**
151
+     * @param string $fixtureFileName
152
+     */
150 153
     protected function getFixture($fixtureFileName)
151 154
     {
152 155
         return file_get_contents(__DIR__.'/fixtures/'.$fixtureFileName);
Please login to merge, or discard this patch.