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 ( b70574...8c9167 )
by Quim
09:06
created
src/Dispatcher/WildcardDispatcher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
         $controller = $route->controller();
18 18
         $rawParams = $route->params();
19 19
         foreach ($rawParams as $param => $value) {
20
-            if (str_contains($controller, "{" . $param . "}")) {
20
+            if (str_contains($controller, "{".$param."}")) {
21 21
                 $controller = str_replace("{".$param."}", ucfirst($value), $controller);
22 22
                 unset($rawParams[$param]);
23 23
             }
Please login to merge, or discard this patch.
src/Router.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
      * @param string $name
64 64
      *      (Optional) An unique name for this route.
65 65
      */
66
-    public function addRoute(array|string $methods, string $uri, string $handler, string $name = ""): void
66
+    public function addRoute(array | string $methods, string $uri, string $handler, string $name = ""): void
67 67
     {
68 68
         if (is_string($name) && trim($name) !== "") {
69 69
             $this->route_names[$name] = $uri;
Please login to merge, or discard this patch.
src/Route/Route.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
      * @param string $name
22 22
      *      (Optional) An unique name for this route.
23 23
      */
24
-    public function __construct(array|string $methods, string $uri, string $handler, string $name = "")
24
+    public function __construct(array | string $methods, string $uri, string $handler, string $name = "")
25 25
     {
26 26
         $this->methods = (array)$methods;
27 27
         $this->uri = $uri;
Please login to merge, or discard this patch.