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 ( 5d6c38...ea6ba9 )
by François
03:55
created
src/OAuth/OAuthModule.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
     private $dateTime;
43 43
 
44 44
     /** @var int */
45
-    private $expiresIn = 7776000;   /* 90 days */
45
+    private $expiresIn = 7776000; /* 90 days */
46 46
 
47 47
     public function __construct(TplInterface $tpl, RandomInterface $random, TokenStorage $tokenStorage, DateTime $dateTime = null)
48 48
     {
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
 
169 169
         // XXX we also should enforce HTTPS
170 170
         $redirectUri = $request->getQueryParameter('redirect_uri');
171
-        if (false === filter_var($redirectUri, FILTER_VALIDATE_URL, FILTER_FLAG_SCHEME_REQUIRED | FILTER_FLAG_HOST_REQUIRED | FILTER_FLAG_PATH_REQUIRED)) {
171
+        if (false === filter_var($redirectUri, FILTER_VALIDATE_URL, FILTER_FLAG_SCHEME_REQUIRED|FILTER_FLAG_HOST_REQUIRED|FILTER_FLAG_PATH_REQUIRED)) {
172 172
             throw new HttpException('invalid redirect_uri', 400);
173 173
         }
174 174
         if (false !== strpos($redirectUri, '?')) {
Please login to merge, or discard this patch.