Test Setup Failed
Push — master ( 18aad0...79eeb7 )
by Marcel
05:40
created
app/Events/GameView.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     /**
19 19
      * Create a new event instance.
20 20
      *
21
-     * @param $gameid
21
+     * @param integer $gameid
22 22
      * @return void
23 23
      */
24 24
     public function __construct($gameid)
Please login to merge, or discard this patch.
app/Events/Obyx.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -19,6 +19,7 @@
 block discarded – undo
19 19
     /**
20 20
      * Create a new event instance.
21 21
      *
22
+     * @param string $reason
22 23
      * @return void
23 24
      */
24 25
     public function __construct($reason, $user_id)
Please login to merge, or discard this patch.
app/Helpers/DatabaseHelper.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -80,6 +80,9 @@
 block discarded – undo
80 80
         return $v->maxviews;
81 81
     }
82 82
 
83
+    /**
84
+     * @param string $type
85
+     */
83 86
     public static function getCommentsMax($type){
84 87
         $v = \DB::table('comments')
85 88
             ->selectRaw('count(id) as maxviews')
Please login to merge, or discard this patch.
app/Helpers/MiscHelper.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -36,6 +36,9 @@
 block discarded – undo
36 36
         return $ret;
37 37
     }
38 38
 
39
+    /**
40
+     * @param integer $size
41
+     */
39 42
     public static function getReadableBytes($size){
40 43
         $bytes = $size;
41 44
 
Please login to merge, or discard this patch.
app/Http/Controllers/CDCController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
      * Store a newly created resource in storage.
82 82
      *
83 83
      * @param  \Illuminate\Http\Request  $request
84
-     * @return \Illuminate\Http\Response
84
+     * @return \Illuminate\Http\RedirectResponse
85 85
      */
86 86
     public function store(Request $request)
87 87
     {
Please login to merge, or discard this patch.
app/Http/Controllers/GameController.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
      * Store a newly created resource in storage.
72 72
      *
73 73
      * @param  \Illuminate\Http\Request $request
74
-     * @return \Illuminate\Http\Response
74
+     * @return \Illuminate\Http\RedirectResponse
75 75
      */
76 76
     public function store(Request $request)
77 77
     {
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
      *
239 239
      * @param  \Illuminate\Http\Request $request
240 240
      * @param  int $id
241
-     * @return \Illuminate\Http\Response
241
+     * @return \Illuminate\Http\RedirectResponse
242 242
      */
243 243
     public function update(Request $request, $id)
244 244
     {
@@ -264,7 +264,7 @@  discard block
 block discarded – undo
264 264
      * Remove the specified resource from storage.
265 265
      *
266 266
      * @param  int $id
267
-     * @return \Illuminate\Http\Response
267
+     * @return \Illuminate\Http\RedirectResponse
268 268
      */
269 269
     public function destroy($id)
270 270
     {
Please login to merge, or discard this patch.
app/Http/Controllers/NewsController.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
      * Store a newly created resource in storage.
48 48
      *
49 49
      * @param  \Illuminate\Http\Request  $request
50
-     * @return \Illuminate\Http\Response
50
+     * @return \Illuminate\Http\RedirectResponse
51 51
      */
52 52
     public function store(Request $request)
53 53
     {
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
      *
134 134
      * @param  \Illuminate\Http\Request  $request
135 135
      * @param  int  $id
136
-     * @return \Illuminate\Http\Response
136
+     * @return \Illuminate\Http\RedirectResponse
137 137
      */
138 138
     public function update(Request $request, $id)
139 139
     {
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
      * Remove the specified resource from storage.
159 159
      *
160 160
      * @param  int  $id
161
-     * @return \Illuminate\Http\Response
161
+     * @return \Illuminate\Http\RedirectResponse
162 162
      */
163 163
     public function destroy($id)
164 164
     {
Please login to merge, or discard this patch.