Completed
Push — master ( 634177...38d03b )
by Karl
04:43
created
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/Repositories/SearchRepository.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
     /**
13 13
      * SearchRepository constructor.
14 14
      *
15
-     * @param Search $model
16 15
      */
17 16
     public function __construct(Search $searches)
18 17
     {
Please login to merge, or discard this patch.
app/Jobs/DeleteSearch.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,6 @@
 block discarded – undo
21 21
     /**
22 22
      * Unsubscribe from a search by deleting it.
23 23
      *
24
-     * @param SearchRepositoryInterface $users
25 24
      *
26 25
      * @return FlashMessage
27 26
      */
Please login to merge, or discard this patch.
app/Filters/CollectionFilter.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.
app/Notifications/LoginTokenGenerated.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/Notifications/ConfirmationTokenGenerated.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/Notifications/PremiumUserSignup.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,8 +14,8 @@  discard block
 block discarded – undo
14 14
     /**
15 15
      * Create a new notification instance.
16 16
      *
17
-     * @param Token $token
18 17
      *
18
+     * @param string $data
19 19
      * @return void
20 20
      */
21 21
     public function __construct($data)
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
      * Get the notification's delivery channels.
28 28
      *
29 29
      * @param  mixed  $notifiable
30
-     * @return array
30
+     * @return string[]
31 31
      */
32 32
     public function via($notifiable)
33 33
     {
Please login to merge, or discard this patch.