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
Branch master (279acb)
by Mozammil
01:20
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/Interceptor.php 2 patches
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
      *
83 83
      * @param \Swift_Message $message
84 84
      *
85
-     * @return void
85
+     * @return Swift_Message
86 86
      */
87 87
     public function intercept(Swift_Message $message)
88 88
     {
@@ -98,7 +98,6 @@  discard block
 block discarded – undo
98 98
     /**
99 99
      * Gets a list of whitelisted recipient
100 100
      *
101
-     * @param array $recipients
102 101
      *
103 102
      * @return \Illuminate\Support\Collection
104 103
      */
Please login to merge, or discard this 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 Mozammil\LaravelMessageInterceptor;
4 4
 
5
-use Swift_Message;
6 5
 use Illuminate\Support\Collection;
7 6
 use Mozammil\LaravelMessageInterceptor\Events\MessageIntercepted;
7
+use Swift_Message;
8 8
 
9 9
 class Interceptor
10 10
 {
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.