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 ( b8f451...161d28 )
by Dwight
9s
created
src/ApnChannel.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
     /**
43 43
      * Create a new instance of the APN channel.
44 44
      *
45
-     * @param  \ZendService\Apple\Apns\Client\Message  $client
45
+     * @param Client  $client
46 46
      * @param  \Illuminate\Events\Dispatcher  $events
47 47
      * @param  \NotificationChannels\Apn\ApnCredentials  $credentials
48 48
      */
Please login to merge, or discard this patch.
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,10 +4,10 @@
 block discarded – undo
4 4
 
5 5
 use Exception;
6 6
 use Illuminate\Events\Dispatcher;
7
+use Illuminate\Notifications\Events\NotificationFailed;
7 8
 use Illuminate\Notifications\Notification;
8
-use ZendService\Apple\Apns\Client\Message as Client;
9 9
 use NotificationChannels\Apn\Exceptions\SendingFailed;
10
-use Illuminate\Notifications\Events\NotificationFailed;
10
+use ZendService\Apple\Apns\Client\Message as Client;
11 11
 use ZendService\Apple\Apns\Response\Message as Response;
12 12
 
13 13
 class ApnChannel
Please login to merge, or discard this patch.