Completed
Push — master ( 1c6980...33c320 )
by Julien
13:13 queued 03:41
created
src/TreeController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
      *
42 42
      * @param Request $request
43 43
      *
44
-     * @return \Illuminate\Http\Response|string
44
+     * @return \Illuminate\Http\RedirectResponse
45 45
      */
46 46
     public function store(Request $request, $championshipId)
47 47
     {
Please login to merge, or discard this patch.
src/TreeGen/DirectEliminationTreeGen.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     /**
51 51
      * Create empty groups for direct Elimination Tree.
52 52
      *
53
-     * @param $numFighters
53
+     * @param integer $numFighters
54 54
      */
55 55
     protected function pushEmptyGroupsToTree($numFighters)
56 56
     {
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
 
148 148
     /**
149 149
      * @param Collection $usersByArea
150
-     * @param $round
150
+     * @param integer $round
151 151
      */
152 152
     public function generateGroupsForRound(Collection $usersByArea, $round)
153 153
     {
Please login to merge, or discard this patch.
src/TreeGen/PlayOffTreeGen.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      *
43 43
      * @param $fightersByEntity
44 44
      *
45
-     * @return mixed
45
+     * @return Collection
46 46
      */
47 47
     protected function chunkAndShuffle(Collection $fightersByEntity)
48 48
     {
@@ -108,6 +108,9 @@  discard block
 block discarded – undo
108 108
 
109 109
     }
110 110
 
111
+    /**
112
+     * @param integer $round
113
+     */
111 114
     protected function generateGroupsForRound(Collection $fightersByArea, $round)
112 115
     {
113 116
         $fightersId = $fightersByArea->pluck('id');
Please login to merge, or discard this patch.