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 — 1.x ( ec4af6...14dc7b )
by Jakub
12:52
created
src/Resource/ResourceBase.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -182,7 +182,7 @@  discard block
 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;
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
                 $response->getReasonPhrase(),
218 218
                 $response->getStatusCode()
219 219
             );
220
-        } elseif (($error = json_decode((string)$response->getBody())) && !empty($error)) {
220
+        } elseif (($error = json_decode((string) $response->getBody())) && !empty($error)) {
221 221
         }
222 222
 
223 223
         // Sometimes VIPPS returns 200 with error message :/ They promised
Please login to merge, or discard this patch.