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 ( d88c83...a99e88 )
by Carlos
11:19
created
src/Abstracts/HttpDeathByCaptchaAbstract.php 1 patch
Unused Use Statements   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,12 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace juniorb2ss\DeathByCaptcha\Abstracts;
4 4
 
5
-use Psr\Http\Message\ResponseInterface;
6 5
 use GuzzleHttp\Exception\GuzzleException;
6
+use Psr\Http\Message\ResponseInterface;
7
+use juniorb2ss\DeathByCaptcha\Abstracts\HttpHandlerResponseAbstract;
7 8
 use juniorb2ss\DeathByCaptcha\DeathByCaptcha;
8
-use juniorb2ss\DeathByCaptcha\Exceptions\ClientException;
9 9
 use juniorb2ss\DeathByCaptcha\Interfaces\ClientInterface;
10
-use juniorb2ss\DeathByCaptcha\Abstracts\HttpHandlerResponseAbstract;
11 10
 
12 11
 abstract class HttpDeathByCaptchaAbstract extends HttpHandlerResponseAbstract implements ClientInterface
13 12
 {
Please login to merge, or discard this patch.
src/Abstracts/HttpHandlerResponseAbstract.php 1 patch
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\InvalidCaptchaException;
Please login to merge, or discard this patch.
src/Abstracts/ServiceAbstract.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,8 +4,8 @@
 block discarded – undo
4 4
 
5 5
 use Psr\Http\Message\ResponseInterface;
6 6
 use juniorb2ss\DeathByCaptcha\DeathByCaptcha;
7
-use juniorb2ss\DeathByCaptcha\Interfaces\ServiceInterface;
8 7
 use juniorb2ss\DeathByCaptcha\Exceptions\InvalidResponseAttributeException;
8
+use juniorb2ss\DeathByCaptcha\Interfaces\ServiceInterface;
9 9
 
10 10
 abstract class ServiceAbstract implements ServiceInterface
11 11
 {
Please login to merge, or discard this patch.
src/DeathByCaptcha.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use GuzzleHttp\Client as GuzzleClient;
6 6
 use GuzzleHttp\ClientInterface;
7
-use GuzzleHttp\Psr7\Response;
8 7
 use juniorb2ss\DeathByCaptcha\Abstracts\HttpDeathByCaptchaAbstract;
9 8
 use juniorb2ss\DeathByCaptcha\Interfaces\AccountInterface;
10 9
 use juniorb2ss\DeathByCaptcha\Interfaces\DeathByCaptchaInterface;
Please login to merge, or discard this patch.
src/Interfaces/DeathByCaptchaInterface.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace juniorb2ss\DeathByCaptcha\Interfaces;
4 4
 
5
-use juniorb2ss\DeathByCaptcha\Interfaces\StatusInterface;
6 5
 use juniorb2ss\DeathByCaptcha\Interfaces\AccountInterface;
7 6
 use juniorb2ss\DeathByCaptcha\Interfaces\ResolverInterface;
7
+use juniorb2ss\DeathByCaptcha\Interfaces\StatusInterface;
8 8
 
9 9
 interface DeathByCaptchaInterface
10 10
 {
Please login to merge, or discard this patch.