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 ( de2f4b...ae1cd0 )
by Mozammil
01:12
created
src/Events/MessageIntercepted.php 1 patch
Unused Use Statements   +3 added lines, -7 removed lines patch added patch discarded remove patch
@@ -2,14 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace Mozammil\LaravelMessageInterceptor\Events;
4 4
 
5
-use Swift_Message;
6
-use Illuminate\Broadcasting\Channel;
7
-use Illuminate\Queue\SerializesModels;
8
-use Illuminate\Broadcasting\PrivateChannel;
9
-use Illuminate\Broadcasting\PresenceChannel;
10
-use Illuminate\Foundation\Events\Dispatchable;
11 5
 use Illuminate\Broadcasting\InteractsWithSockets;
12
-use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
6
+use Illuminate\Foundation\Events\Dispatchable;
7
+use Illuminate\Queue\SerializesModels;
8
+use Swift_Message;
13 9
 
14 10
 class MessageIntercepted
15 11
 {
Please login to merge, or discard this patch.
src/Listeners/InterceptMessage.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -2,11 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Mozammil\LaravelMessageInterceptor\Listeners;
4 4
 
5
-use Illuminate\Queue\InteractsWithQueue;
6
-use Illuminate\Contracts\Queue\ShouldQueue;
7 5
 use Illuminate\Mail\Events\MessageSending;
8 6
 use Mozammil\LaravelMessageInterceptor\Interceptor;
9
-use Mozammil\LaravelMessageInterceptor\Events\MessageIntercepted;
10 7
 
11 8
 class InterceptMessage
12 9
 {
Please login to merge, or discard this patch.
src/Interceptor.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,6 @@
 block discarded – undo
40 40
     /**
41 41
      * Gets a list of whitelisted recipient
42 42
      *
43
-     * @param array $recipients
44 43
      *
45 44
      * @return array
46 45
      */
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace Mozammil\LaravelMessageInterceptor;
4 4
 
5
-use Swift_Message;
6 5
 use InvalidArgumentException;
7
-use Illuminate\Support\Collection;
8 6
 use Mozammil\LaravelMessageInterceptor\Events\MessageIntercepted;
7
+use Swift_Message;
9 8
 
10 9
 class Interceptor
11 10
 {
Please login to merge, or discard this patch.