Completed
Branch master (8e0976)
by Adam
04:13
created
app/Exceptions/Handler.php 2 patches
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.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@
 block discarded – undo
10 10
 use Illuminate\Http\Request;
11 11
 use Illuminate\Session\TokenMismatchException;
12 12
 use Illuminate\Validation\ValidationException;
13
-use Illuminate\Auth\Access\AuthorizationException;
14 13
 use Illuminate\Database\Eloquent\ModelNotFoundException;
15 14
 use Symfony\Component\Console\Exception\CommandNotFoundException;
16 15
 use Symfony\Component\Debug\Exception\FlattenException;
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/Http/Controllers/User/NotificationsController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Coyote\Notification;
6 6
 use Coyote\Repositories\Contracts\NotificationRepositoryInterface as NotificationRepository;
7
-use Coyote\Transformers\NotificationTransformer;
8 7
 use Coyote\Http\Resources\Notification as NotificationResource;
9 8
 use Illuminate\Http\Request;
10 9
 use Carbon;
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.
app/Helpers/Helpers.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
 
109 109
     if (!array_key_exists($path, $manifest)) {
110 110
         throw new Exception(
111
-            "Unable to locate webpack mix file: {$path}. Please check your ".
111
+            "Unable to locate webpack mix file: {$path}. Please check your " .
112 112
             'webpack.mix.js output paths and try again.'
113 113
         );
114 114
     }
Please login to merge, or discard this patch.