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 ( d8af4f...3cf3d3 )
by Lester
01:16
created
src/Traits/HasOTP.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -31,6 +31,9 @@
 block discarded – undo
31 31
         return $this;
32 32
     }
33 33
 
34
+    /**
35
+     * @param string $otp
36
+     */
34 37
     public function verify($otp)
35 38
     {
36 39
         $verified = $this->getTOTP()->verify($otp);
Please login to merge, or discard this patch.
src/Routing/Router.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,6 +88,9 @@  discard block
 block discarded – undo
88 88
         return false;
89 89
     }
90 90
 
91
+    /**
92
+     * @param string $action
93
+     */
91 94
     protected function do($action, $path, $values)
92 95
     {
93 96
         $data = false;
@@ -123,7 +126,7 @@  discard block
 block discarded – undo
123 126
     }
124 127
 
125 128
     /**
126
-     * @param $callback
129
+     * @param callable $callback
127 130
      * @return array|string|Closure
128 131
      * @throws UnexpectedValueException
129 132
      * @throws NotFoundExceptionInterface
Please login to merge, or discard this patch.