Completed
Branch master (a86b57)
by Adam
05:31
created
app/Models/Taggable.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     }
16 16
 
17 17
     /**
18
-     * @return array
18
+     * @return Post
19 19
      */
20 20
     public function getTagNames()
21 21
     {
Please login to merge, or discard this patch.
app/Http/Controllers/Controller.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -185,7 +185,7 @@
 block discarded – undo
185 185
 
186 186
     /**
187 187
      * @param \Closure $callback
188
-     * @return mixed
188
+     * @return string|null
189 189
      */
190 190
     protected function transaction(\Closure $callback)
191 191
     {
Please login to merge, or discard this patch.
app/Http/Validators/ThrottleValidator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@
 block discarded – undo
99 99
     }
100 100
 
101 101
     /**
102
-     * @return int
102
+     * @return double
103 103
      */
104 104
     protected function availableIn()
105 105
     {
Please login to merge, or discard this patch.
app/Http/Controllers/Wiki/ShowController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@
 block discarded – undo
118 118
     }
119 119
 
120 120
     /**
121
-     * @param $wikiId
121
+     * @param integer $wikiId
122 122
      * @return \Coyote\Wiki[]
123 123
      */
124 124
     private function getRelated($wikiId)
Please login to merge, or discard this patch.
app/Models/Searchable.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
     /**
18 18
      * Index data in elasticsearch
19 19
      *
20
-     * @return mixed
20
+     * @return callable
21 21
      */
22 22
     public function putToIndex()
23 23
     {
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
      *
33 33
      * @throws Missing404Exception,
34 34
      * @throws \Exception
35
-     * @return mixed
35
+     * @return callable
36 36
      */
37 37
     public function deleteFromIndex()
38 38
     {
Please login to merge, or discard this patch.
app/Exceptions/Handler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@
 block discarded – undo
126 126
 
127 127
     /**
128 128
      * @param Request $request
129
-     * @param HttpException|ModelNotFoundException $e
129
+     * @param Exception $e
130 130
      * @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector|SymfonyResponse
131 131
      */
132 132
     protected function renderHttpErrorException(Request $request, $e)
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/ConfirmController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@
 block discarded – undo
98 98
      * Potwierdzenie adresu e-mail poprzez link aktywacyjny znajdujacy sie w mailu
99 99
      *
100 100
      * @param Request $request
101
-     * @return \Illuminate\Http\Response
101
+     * @return \Illuminate\Http\RedirectResponse
102 102
      */
103 103
     public function email(Request $request)
104 104
     {
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/ResetPasswordController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
      * Get the response for a successful password reset.
72 72
      *
73 73
      * @param  string  $response
74
-     * @return \Illuminate\Http\Response
74
+     * @return \Illuminate\Http\RedirectResponse
75 75
      */
76 76
     protected function sendResetResponse($response)
77 77
     {
Please login to merge, or discard this patch.
app/Http/Controllers/Pastebin/ShowController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
 
26 26
     /**
27 27
      * @param \Coyote\Pastebin $pastebin
28
-     * @return mixed
28
+     * @return \Illuminate\View\View
29 29
      */
30 30
     public function index($pastebin)
31 31
     {
Please login to merge, or discard this patch.