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 ( e89fe2...5261a1 )
by Freek
03:16 queued 01:57
created
src/Handlers/SignatureHandler.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -50,6 +50,9 @@
 block discarded – undo
50 50
         return $this->description ?: '';
51 51
     }
52 52
 
53
+    /**
54
+     * @param string $foo
55
+     */
53 56
     public function getArgument($foo)
54 57
     {
55 58
         return $this->input->getArgument($foo);
Please login to merge, or discard this patch.
Unused Use Statements   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -2,17 +2,17 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\SlashCommand\Handlers;
4 4
 
5
-use Illuminate\Support\Str;
6 5
 use Illuminate\Console\Parser;
6
+use Illuminate\Support\Str;
7
+use Spatie\SlashCommand\Exceptions\InvalidHandler;
8
+use Spatie\SlashCommand\Exceptions\InvalidInput;
7 9
 use Spatie\SlashCommand\Request;
8 10
 use Symfony\Component\Console\Command\Command;
9
-use Spatie\SlashCommand\Exceptions\InvalidInput;
10
-use Symfony\Component\Console\Input\StringInput;
11
-use Spatie\SlashCommand\Exceptions\InvalidHandler;
11
+use Symfony\Component\Console\Exception\RuntimeException;
12
+use Symfony\Component\Console\Helper\DescriptorHelper;
12 13
 use Symfony\Component\Console\Input\InputDefinition;
14
+use Symfony\Component\Console\Input\StringInput;
13 15
 use Symfony\Component\Console\Output\BufferedOutput;
14
-use Symfony\Component\Console\Helper\DescriptorHelper;
15
-use Symfony\Component\Console\Exception\RuntimeException;
16 16
 
17 17
 abstract class SignatureHandler extends BaseHandler
18 18
 {
Please login to merge, or discard this patch.
src/Handlers/Help.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
     /**
60 60
      * Show the help information for a single SignatureHandler.
61 61
      *
62
-     * @param  Collection|SignatureHandler[] $handlers
62
+     * @param  Collection $handlers
63 63
      * @param  string $command
64 64
      * @return Response
65 65
      */
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
     /**
87 87
      * Show a list of all available handlers.
88 88
      *
89
-     * @param  Collection|SignatureHandler[] $handlers
89
+     * @param  Collection $handlers
90 90
      * @return Response
91 91
      */
92 92
     protected function displayListOfAllCommands(Collection $handlers): Response
Please login to merge, or discard this patch.
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,13 +2,13 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\SlashCommand\Handlers;
4 4
 
5
-use Illuminate\Support\Str;
6
-use Spatie\SlashCommand\Request;
7
-use Spatie\SlashCommand\Response;
8 5
 use Illuminate\Support\Collection;
6
+use Illuminate\Support\Str;
9 7
 use Spatie\SlashCommand\Attachment;
10 8
 use Spatie\SlashCommand\AttachmentField;
11 9
 use Spatie\SlashCommand\HandlesSlashCommand;
10
+use Spatie\SlashCommand\Request;
11
+use Spatie\SlashCommand\Response;
12 12
 
13 13
 class Help extends SignatureHandler
14 14
 {
Please login to merge, or discard this patch.
src/Controller.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -5,13 +5,13 @@
 block discarded – undo
5 5
 use Exception;
6 6
 use Illuminate\Config\Repository;
7 7
 use Illuminate\Http\Request as IlluminateRequest;
8
-use Spatie\SlashCommand\Exceptions\InvalidHandler;
9
-use Spatie\SlashCommand\Exceptions\InvalidRequest;
10
-use Spatie\SlashCommand\Handlers\SignatureHandler;
11 8
 use Illuminate\Http\Response as IlluminateResponse;
12 9
 use Illuminate\Routing\Controller as IlluminateController;
10
+use Spatie\SlashCommand\Exceptions\InvalidHandler;
11
+use Spatie\SlashCommand\Exceptions\InvalidRequest;
13 12
 use Spatie\SlashCommand\Exceptions\RequestCouldNotBeHandled;
14 13
 use Spatie\SlashCommand\Exceptions\SlackSlashCommandException;
14
+use Spatie\SlashCommand\Handlers\SignatureHandler;
15 15
 
16 16
 class Controller extends IlluminateController
17 17
 {
Please login to merge, or discard this patch.
src/Handlers/CatchAll.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,13 +2,13 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\SlashCommand\Handlers;
4 4
 
5
-use Illuminate\Support\Str;
6
-use Spatie\SlashCommand\Request;
7
-use Spatie\SlashCommand\Response;
8 5
 use Illuminate\Support\Collection;
6
+use Illuminate\Support\Str;
9 7
 use Spatie\SlashCommand\Attachment;
10 8
 use Spatie\SlashCommand\AttachmentField;
11 9
 use Spatie\SlashCommand\HandlesSlashCommand;
10
+use Spatie\SlashCommand\Request;
11
+use Spatie\SlashCommand\Response;
12 12
 
13 13
 class CatchAll extends BaseHandler
14 14
 {
Please login to merge, or discard this patch.