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 ( 4bd95a...762678 )
by Carlos
02:56
created
src/Abstracts/HttpHandlerResponseAbstract.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace juniorb2ss\DeathByCaptcha\Abstracts;
4 4
 
5
-use Psr\Http\Message\ResponseInterface;
6 5
 use juniorb2ss\DeathByCaptcha\Exceptions\AccessDeniedException;
7 6
 use juniorb2ss\DeathByCaptcha\Exceptions\CaptchaNotFoundException;
8 7
 use juniorb2ss\DeathByCaptcha\Exceptions\InternalServiceException;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
         // accept de json, técnicamente deverá retornar
61 61
         // o content type como json
62 62
         // mas... nunca se sabe, né?
63
-        if (($contentType !== $this->contentTypeOk) or (empty((string)$response->getBody()))) {
63
+        if (($contentType !== $this->contentTypeOk) or (empty((string) $response->getBody()))) {
64 64
             throw new InvalidServiceResponseException;
65 65
         }
66 66
     }
Please login to merge, or discard this patch.