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.
Passed
Push — master ( 04fc1d...e0e4d2 )
by Sam
09:08
created
src/Command/BuryCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
         } elseif ($responseLine == ResponseInterface::RESPONSE_BURIED) {
45 45
             return $this->createResponse(ResponseInterface::RESPONSE_BURIED);
46 46
         } else {
47
-            throw new Exception('Unhandled response: ' . $responseLine);
47
+            throw new Exception('Unhandled response: '.$responseLine);
48 48
         }
49 49
     }
50 50
 }
Please login to merge, or discard this patch.
src/Command/UseCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 {
19 19
     public function getCommandLine(): string
20 20
     {
21
-        return 'use ' . $this->tube;
21
+        return 'use '.$this->tube;
22 22
     }
23 23
 
24 24
     public function parseResponse(string $responseLine, ?string $responseData): ArrayResponse
Please login to merge, or discard this patch.