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 ( ef23a3...11b05d )
by
unknown
14:04 queued 03:17
created
src/Commands/SetupCommand.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace NotificationChannels\Discord\Commands;
4 4
 
5
-use WebSocket\Client;
6
-use Illuminate\Support\Arr;
7
-use Illuminate\Console\Command;
8 5
 use GuzzleHttp\Client as HttpClient;
6
+use Illuminate\Console\Command;
7
+use Illuminate\Support\Arr;
8
+use WebSocket\Client;
9 9
 
10 10
 class SetupCommand extends Command
11 11
 {
Please login to merge, or discard this patch.
src/Discord.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
     }
52 52
 
53 53
     /**
54
-     * @param $verb
54
+     * @param string $verb
55 55
      * @param  string $endpoint
56 56
      * @param  array $data
57 57
      *
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,9 +3,9 @@
 block discarded – undo
3 3
 namespace NotificationChannels\Discord;
4 4
 
5 5
 use Exception;
6
-use Illuminate\Support\Arr;
7 6
 use GuzzleHttp\Client as HttpClient;
8 7
 use GuzzleHttp\Exception\RequestException;
8
+use Illuminate\Support\Arr;
9 9
 use NotificationChannels\Discord\Exceptions\CouldNotSendNotification;
10 10
 
11 11
 class Discord
Please login to merge, or discard this patch.