Completed
Push — master ( 49518f...3dd743 )
by Karl
10s
created
app/Notifications/JobsCollected.php 2 patches
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.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php namespace JobApis\JobsToMail\Notifications;
2 2
 
3 3
 use Illuminate\Bus\Queueable;
4
-use Illuminate\Notifications\Notification;
5 4
 use Illuminate\Contracts\Queue\ShouldQueue;
5
+use Illuminate\Notifications\Notification;
6 6
 use Illuminate\Queue\SerializesModels;
7 7
 use JobApis\JobsToMail\Models\Search;
8 8
 use JobApis\JobsToMail\Notifications\Messages\JobMailMessage;
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/Models/Recruiter.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,6 @@
 block discarded – undo
1 1
 <?php namespace JobApis\JobsToMail\Models;
2 2
 
3 3
 use Illuminate\Database\Eloquent\Model;
4
-use Illuminate\Support\Facades\DB;
5 4
 use Ramsey\Uuid\Uuid;
6 5
 
7 6
 class Recruiter extends Model
Please login to merge, or discard this patch.
app/Jobs/Searches/Delete.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/Http/Controllers/AuthController.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php namespace JobApis\JobsToMail\Http\Controllers;
2 2
 
3 3
 use Illuminate\Foundation\Bus\DispatchesJobs;
4
+use Illuminate\Foundation\Validation\ValidatesRequests;
4 5
 use Illuminate\Http\Request;
5 6
 use Illuminate\Routing\Controller as BaseController;
6
-use Illuminate\Foundation\Validation\ValidatesRequests;
7 7
 use JobApis\JobsToMail\Http\Requests\LoginUser;
8 8
 use JobApis\JobsToMail\Jobs\Auth\LoginUserWithToken;
9 9
 use JobApis\JobsToMail\Jobs\Auth\SendLoginMessage;
Please login to merge, or discard this patch.
app/Http/Controllers/NotificationsController.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php namespace JobApis\JobsToMail\Http\Controllers;
2 2
 
3 3
 use Illuminate\Foundation\Bus\DispatchesJobs;
4
+use Illuminate\Foundation\Validation\ValidatesRequests;
4 5
 use Illuminate\Http\Request;
5 6
 use Illuminate\Routing\Controller as BaseController;
6
-use Illuminate\Foundation\Validation\ValidatesRequests;
7 7
 use JobApis\JobsToMail\Jobs\Notifications\GenerateCsv;
8 8
 use JobApis\JobsToMail\Jobs\Notifications\GetNotificationById;
9 9
 
Please login to merge, or discard this patch.
app/Jobs/Notifications/SearchAndNotifyUser.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@
 block discarded – undo
1 1
 <?php namespace JobApis\JobsToMail\Jobs\Notifications;
2 2
 
3 3
 use Illuminate\Bus\Queueable;
4
-use Illuminate\Queue\SerializesModels;
5
-use Illuminate\Queue\InteractsWithQueue;
6 4
 use Illuminate\Contracts\Queue\ShouldQueue;
5
+use Illuminate\Queue\InteractsWithQueue;
6
+use Illuminate\Queue\SerializesModels;
7 7
 use Illuminate\Support\Facades\Log;
8
-use JobApis\Jobs\Client\JobsMulti;
9 8
 use JobApis\JobsToMail\Filters\RecruiterFilter;
10 9
 use JobApis\JobsToMail\Models\Recruiter;
11 10
 use JobApis\JobsToMail\Models\Search;
12 11
 use JobApis\JobsToMail\Notifications\JobsCollected;
12
+use JobApis\Jobs\Client\JobsMulti;
13 13
 
14 14
 class SearchAndNotifyUser implements ShouldQueue
15 15
 {
Please login to merge, or discard this patch.
app/Notifications/ConfirmationTokenGenerated.php 2 patches
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.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php namespace JobApis\JobsToMail\Notifications;
2 2
 
3 3
 use Illuminate\Bus\Queueable;
4
-use Illuminate\Notifications\Notification;
5 4
 use Illuminate\Contracts\Queue\ShouldQueue;
6 5
 use Illuminate\Notifications\Messages\MailMessage;
6
+use Illuminate\Notifications\Notification;
7 7
 use JobApis\JobsToMail\Models\Token;
8 8
 
9 9
 class ConfirmationTokenGenerated extends Notification implements ShouldQueue
Please login to merge, or discard this patch.
app/Notifications/LoginTokenGenerated.php 2 patches
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.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php namespace JobApis\JobsToMail\Notifications;
2 2
 
3 3
 use Illuminate\Bus\Queueable;
4
-use Illuminate\Notifications\Notification;
5 4
 use Illuminate\Contracts\Queue\ShouldQueue;
6 5
 use Illuminate\Notifications\Messages\MailMessage;
6
+use Illuminate\Notifications\Notification;
7 7
 use JobApis\JobsToMail\Models\Token;
8 8
 
9 9
 class LoginTokenGenerated extends Notification implements ShouldQueue
Please login to merge, or discard this patch.