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 ( 4235fd...911585 )
by Freek
02:30
created
src/Handlers/SignatureHandler.php 1 patch
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.
src/Handlers/Help.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
     /**
59 59
      * Show the help information for a single SignatureHandler
60 60
      *
61
-     * @param  Collection|SignatureHandler[] $handlers
61
+     * @param  Collection $handlers
62 62
      * @param  string $command
63 63
      * @return Response
64 64
      */
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
     /**
85 85
      * Show a list of all available Handlers
86 86
      *
87
-     * @param  Collection|SignatureHandler[] $handlers
87
+     * @param  Collection $handlers
88 88
      * @return Response
89 89
      */
90 90
     protected function displayHelpList(Collection $handlers): Response
Please login to merge, or discard this patch.
src/Handlers/CatchAll.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -107,6 +107,9 @@
 block discarded – undo
107 107
             ->setFields($attachmentFields);
108 108
     }
109 109
 
110
+    /**
111
+     * @param Collection $alternativeHandlers
112
+     */
110 113
     protected function containsHelpHandler($alternativeHandlers)
111 114
     {
112 115
         $alternativeHandlers->first(function (SignatureHandler $handler) {
Please login to merge, or discard this patch.