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/Routing/Router.php 2 patches
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.
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 LBHurtado\Missive\Routing;
4 4
 
5
-use DB;
6 5
 use Closure;
6
+use DB;
7 7
 use Exception;
8
-use Opis\Pattern\RegexBuilder;
8
+use LBHurtado\Missive\Classes\SMSAbstract;
9 9
 use LBHurtado\Missive\Missive;
10
+use Opis\Pattern\RegexBuilder;
10 11
 use Psr\Container\ContainerInterface;
11
-use LBHurtado\Missive\Classes\SMSAbstract;
12 12
 
13 13
 class Router
14 14
 {
Please login to merge, or discard this patch.