Completed
Branch master (8e0976)
by Adam
04:13
created
app/Exceptions/Handler.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
 
116 116
     /**
117 117
      * @param Request $request
118
-     * @param $e
118
+     * @param TokenMismatchException $e
119 119
      * @return \Illuminate\Http\JsonResponse|\Illuminate\Http\RedirectResponse
120 120
      */
121 121
     protected function renderTokenMismatchException(Request $request, $e)
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
 
144 144
     /**
145 145
      * @param Request $request
146
-     * @param HttpException|ModelNotFoundException $e
146
+     * @param Exception $e
147 147
      * @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector|SymfonyResponse
148 148
      */
149 149
     protected function renderHttpErrorException(Request $request, $e)
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/LoginController.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -137,8 +137,7 @@
 block discarded – undo
137 137
     /**
138 138
      * The user has logged out of the application.
139 139
      *
140
-     * @param  \Illuminate\Http\Request  $request
141
-     * @return mixed
140
+     * @return \Illuminate\Http\RedirectResponse
142 141
      */
143 142
     protected function loggedOut()
144 143
     {
Please login to merge, or discard this patch.
app/Notifications/FlagCreatedNotification.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,6 @@
 block discarded – undo
82 82
     }
83 83
 
84 84
     /**
85
-     * @param \Coyote\User $user
86 85
      * @return BroadcastMessage
87 86
      */
88 87
     public function toBroadcast()
Please login to merge, or discard this patch.
app/Notifications/JobExpiredNotification.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
     /**
32 32
      * Get the notification's delivery channels.
33 33
      *
34
-     * @return array
34
+     * @return string[]
35 35
      */
36 36
     public function via()
37 37
     {
Please login to merge, or discard this patch.
app/Repositories/Eloquent/PmRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -187,7 +187,7 @@
 block discarded – undo
187 187
      * Returns subquery
188 188
      *
189 189
      * @param int $userId
190
-     * @return mixed
190
+     * @return \Illuminate\Database\Eloquent\Builder
191 191
      */
192 192
     private function subSql($userId)
193 193
     {
Please login to merge, or discard this patch.
app/Repositories/Eloquent/UserRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@
 block discarded – undo
124 124
     }
125 125
 
126 126
     /**
127
-     * @param $field
127
+     * @param string $field
128 128
      * @param $value
129 129
      * @return \Illuminate\Database\Query\Builder
130 130
      */
Please login to merge, or discard this patch.
app/Repositories/Eloquent/WikiRepository.php 1 patch
Doc Comments   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 
24 24
     /**
25 25
      * @param string $path
26
-     * @return mixed
26
+     * @return WikiRepository
27 27
      */
28 28
     public function findByPath($path)
29 29
     {
@@ -291,7 +291,7 @@  discard block
 block discarded – undo
291 291
     /**
292 292
      * @param int $wikiId
293 293
      * @param int $pathId
294
-     * @return \Coyote\Wiki\Path
294
+     * @return Wiki\Page
295 295
      */
296 296
     public function clone($wikiId, $pathId)
297 297
     {
@@ -413,8 +413,9 @@  discard block
 block discarded – undo
413 413
     }
414 414
 
415 415
     /**
416
-     * @param $name
416
+     * @param string $name
417 417
      * @param array ...$args
418
+     * @param integer $args
418 419
      * @return \Illuminate\Database\Query\Expression
419 420
      */
420 421
     private function rawFunction($name, ...$args)
Please login to merge, or discard this patch.