Passed
Pull Request — master (#40)
by Julien
13:45 queued 11:20
created
src/Models/PreliminaryFight.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
     /**
58 58
      * Save a Fight.
59 59
      *
60
-     * @param Collection $group
60
+     * @param FightersGroup $group
61 61
      * @param int        $numGroup
62 62
      * @param int        $order
63 63
      */
Please login to merge, or discard this patch.
src/TreeGen/TreeGen.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,6 +21,9 @@  discard block
 block discarded – undo
21 21
 
22 22
     abstract protected function generateFights();
23 23
 
24
+    /**
25
+     * @param string|null $fighterToUpdate
26
+     */
24 27
     abstract protected function addFighterToGroup(FightersGroup $group, $fighter, $fighterToUpdate);
25 28
 
26 29
     abstract protected function getByeGroup($fighters);
@@ -82,7 +85,7 @@  discard block
 block discarded – undo
82 85
      * Get the size the first round will have.
83 86
      *
84 87
      * @param $fighterCount
85
-     * @param $groupSize
88
+     * @param integer $groupSize
86 89
      *
87 90
      * @return int
88 91
      */
@@ -200,7 +203,7 @@  discard block
 block discarded – undo
200 203
     /**
201 204
      * Logically build the tree ( attach a parent to every child for nestedSet Navigation ).
202 205
      *
203
-     * @param $numFighters
206
+     * @param integer $numFighters
204 207
      */
205 208
     protected function addParentToChildren($numFighters)
206 209
     {
Please login to merge, or discard this patch.