GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 975789...8d1e58 )
by Cretu
07:18 queued 05:33
created
src/PushSubscription.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
     /**
22 22
      * Get the user that owns the subscription.
23 23
      *
24
-     * @return \Illuminate\Contracts\Auth\Authenticatable
24
+     * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
25 25
      */
26 26
     public function user()
27 27
     {
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace NotificationChannels\WebPush;
4 4
 
5
-use Illuminate\Support\Facades\Config;
6 5
 use Illuminate\Database\Eloquent\Model;
6
+use Illuminate\Support\Facades\Config;
7 7
 
8 8
 class PushSubscription extends Model
9 9
 {
Please login to merge, or discard this patch.
src/VapidKeysGenerateCommand.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace NotificationChannels\WebPush;
4 4
 
5
-use Illuminate\Support\Str;
6
-use Minishlink\WebPush\VAPID;
7 5
 use Illuminate\Console\Command;
8 6
 use Illuminate\Console\ConfirmableTrait;
7
+use Illuminate\Support\Str;
8
+use Minishlink\WebPush\VAPID;
9 9
 
10 10
 class VapidKeysGenerateCommand extends Command
11 11
 {
Please login to merge, or discard this patch.
src/WebPushChannel.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace NotificationChannels\WebPush;
4 4
 
5
-use Minishlink\WebPush\WebPush;
6 5
 use Illuminate\Notifications\Notification;
6
+use Minishlink\WebPush\WebPush;
7 7
 
8 8
 class WebPushChannel
9 9
 {
Please login to merge, or discard this patch.
src/WebPushServiceProvider.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace NotificationChannels\WebPush;
4 4
 
5
+use Illuminate\Support\ServiceProvider;
5 6
 use Illuminate\Support\Str;
6 7
 use Minishlink\WebPush\WebPush;
7
-use Illuminate\Support\ServiceProvider;
8 8
 
9 9
 class WebPushServiceProvider extends ServiceProvider
10 10
 {
Please login to merge, or discard this patch.