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 ( 9d7c7b...fab8f4 )
by Oleg
7s
created
src/BlizzardClient.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -217,7 +217,7 @@
 block discarded – undo
217 217
     /**
218 218
      * Set access token
219 219
      *
220
-     * @param null|Tokens\Access $accessToken Access token
220
+     * @param Tokens\Access $accessToken Access token
221 221
      *
222 222
      * @return $this
223 223
      */
Please login to merge, or discard this patch.
src/Tokens/Access.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
         $this->tokenType = $tokenType;
52 52
         $this->expiresIn = $expiresIn;
53 53
         $this->createdAt = new \DateTime();
54
-        $this->expiresAt = new \DateTime();;
54
+        $this->expiresAt = new \DateTime(); ;
55 55
         $this->expiresAt->add(new \DateInterval('PT'.$this->expiresIn.'S'));
56 56
     }
57 57
 
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
      */
73 73
     public function isExpired()
74 74
     {
75
-        if ($this->expiresAt > new \DateTime()){
75
+        if ($this->expiresAt > new \DateTime()) {
76 76
             return false;
77 77
         }
78 78
 
Please login to merge, or discard this patch.