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 ( bf3942...03b34a )
by Andre
03:54
created
src/Routing/UriGenerator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
      */
53 53
     private function encodeUriParameters(array $uriParameters): array
54 54
     {
55
-        return array_map(function ($uriParameter) {
55
+        return array_map(function($uriParameter) {
56 56
             $uriParameter = rawurlencode((string)$uriParameter);
57 57
             return preg_replace('~\%2F~', '/', $uriParameter);
58 58
         }, $uriParameters);
Please login to merge, or discard this patch.
src/Paginator/PageFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
     ): PageInterface {
37 37
         $totalCount = (int)$meta['total'];
38 38
         $limit = isset($meta['page_input']) ? (int)$meta['page_input']['limit'] : null;
39
-        $offset = isset($meta['page_input']) ? (int)$meta['page_input']['offset']: null;
39
+        $offset = isset($meta['page_input']) ? (int)$meta['page_input']['offset'] : null;
40 40
 
41 41
         return new Page(
42 42
             new PageFactory($this->httpClient),
Please login to merge, or discard this patch.