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
Pull Request — 1.x (#23)
by
unknown
03:53
created
src/Resource/ResourceBase.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@
 block discarded – undo
122 122
     }
123 123
 
124 124
     /**
125
-     * @param $path
125
+     * @param string $path
126 126
      *
127 127
      * @return \Psr\Http\Message\UriInterface
128 128
      */
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -182,7 +182,7 @@
 block discarded – undo
182 182
             // Send async request.
183 183
             $response = $client->sendAsyncRequest($request)->wait();
184 184
         } else {
185
-            throw new \LogicException('Unknown HTTP Client type: '. implode(',', class_implements($client)));
185
+            throw new \LogicException('Unknown HTTP Client type: ' . implode(',', class_implements($client)));
186 186
         }
187 187
 
188 188
         return $response;
Please login to merge, or discard this patch.
src/Resource/Payment/PaymentResourceBase.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -42,11 +42,11 @@
 block discarded – undo
42 42
 
43 43
         // Autodiscover X-Source-Address from env.
44 44
         $this->headers['X-Source-Address'] = getenv('HTTP_CLIENT_IP')
45
-            ?:getenv('HTTP_X_FORWARDED_FOR')
46
-            ?:getenv('HTTP_X_FORWARDED')
47
-            ?:getenv('HTTP_FORWARDED_FOR')
48
-            ?:getenv('HTTP_FORWARDED')
49
-            ?:getenv('REMOTE_ADDR')
50
-            ?:gethostname();
45
+            ?: getenv('HTTP_X_FORWARDED_FOR')
46
+            ?: getenv('HTTP_X_FORWARDED')
47
+            ?: getenv('HTTP_FORWARDED_FOR')
48
+            ?: getenv('HTTP_FORWARDED')
49
+            ?: getenv('REMOTE_ADDR')
50
+            ?: gethostname();
51 51
     }
52 52
 }
Please login to merge, or discard this patch.
src/Resource/AuthorizedResourceBase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
         parent::__construct($vipps, $subscription_key);
24 24
         $this->headers['Authorization'] =
25 25
                 $this->app->getClient()->getTokenStorage()->get()->getTokenType()
26
-                .' '.
26
+                .' ' .
27 27
                 $this->app->getClient()->getTokenStorage()->get()->getAccessToken();
28 28
     }
29 29
 }
Please login to merge, or discard this patch.