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
Pull Request — master (#35)
by Dwight
01:18
created
src/ApnChannel.php 1 patch
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -4,12 +4,12 @@
 block discarded – undo
4 4
 
5 5
 use Exception;
6 6
 use Illuminate\Events\Dispatcher;
7
-use ZendService\Apple\Apns\Message\Alert;
7
+use Illuminate\Notifications\Events\NotificationFailed;
8 8
 use Illuminate\Notifications\Notification;
9
-use ZendService\Apple\Apns\Message as Packet;
10
-use ZendService\Apple\Apns\Client\Message as Client;
11 9
 use NotificationChannels\Apn\Exceptions\SendingFailed;
12
-use Illuminate\Notifications\Events\NotificationFailed;
10
+use ZendService\Apple\Apns\Client\Message as Client;
11
+use ZendService\Apple\Apns\Message as Packet;
12
+use ZendService\Apple\Apns\Message\Alert;
13 13
 use ZendService\Apple\Apns\Response\Message as Response;
14 14
 
15 15
 class ApnChannel
Please login to merge, or discard this patch.
src/ApnConnection.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,6 @@
 block discarded – undo
61 61
     /**
62 62
      * Send the provided packet over the existing connection.
63 63
      *
64
-     * @param  \ZendService\Apple\Apns\Message  $message
65 64
      * @return \ZendService\Apple\Apns\Response\Message
66 65
      */
67 66
     public function send(Message $packet)
Please login to merge, or discard this patch.
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace NotificationChannels\Apn;
4 4
 
5
-use ZendService\Apple\Apns\Message;
6
-use ZendService\Apple\Apns\Client\Message as Client;
7 5
 use NotificationChannels\Apn\Exceptions\ConnectionFailed;
6
+use ZendService\Apple\Apns\Client\Message as Client;
7
+use ZendService\Apple\Apns\Message;
8 8
 
9 9
 class ApnConnection
10 10
 {
Please login to merge, or discard this patch.
src/FeedbackService.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\Apn;
4 4
 
5
-use ZendService\Apple\Apns\Client\Feedback as Client;
6 5
 use NotificationChannels\Apn\Exception\ConnectionFailed;
6
+use ZendService\Apple\Apns\Client\Feedback as Client;
7 7
 
8 8
 class FeedbackService
9 9
 {
Please login to merge, or discard this patch.