Completed
Pull Request — master (#10)
by Karl
04:50 queued 02:11
created
app/Http/Controllers/UsersController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
     /**
58 58
      * Unsubscribe user account
59 59
      *
60
-     * @return string Json of all users
60
+     * @return \Illuminate\Http\RedirectResponse Json of all users
61 61
      */
62 62
     public function unsubscribe(Request $request, $userId)
63 63
     {
Please login to merge, or discard this patch.
app/Notifications/TokenGenerated.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
      * Get the notification's delivery channels.
30 30
      *
31 31
      * @param  mixed  $notifiable
32
-     * @return array
32
+     * @return string[]
33 33
      */
34 34
     public function via($notifiable)
35 35
     {
Please login to merge, or discard this patch.
app/Repositories/UserRepository.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,6 @@
 block discarded – undo
20 20
     /**
21 21
      * UserRepository constructor.
22 22
      *
23
-     * @param User $model
24 23
      */
25 24
     public function __construct(User $users, Token $tokens)
26 25
     {
Please login to merge, or discard this patch.
app/Notifications/JobsCollected.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
      * Get the notification's delivery channels.
30 30
      *
31 31
      * @param  mixed  $notifiable
32
-     * @return array
32
+     * @return string[]
33 33
      */
34 34
     public function via($notifiable)
35 35
     {
Please login to merge, or discard this patch.
app/Jobs/CollectJobsForUser.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,6 @@
 block discarded – undo
100 100
     /**
101 101
      * Logs all the errors attached to a collection
102 102
      *
103
-     * @param array $jobsByProvider
104 103
      *
105 104
      * @return void
106 105
      */
Please login to merge, or discard this patch.