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 — evangelist ( 4d3f68...3fc8d9 )
by Temitope
04:51
created
src/EvangelistStatus.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -33,15 +33,15 @@  discard block
 block discarded – undo
33 33
 	
34 34
     public function __construct($username)
35 35
     { 
36
-        $this->username                         = $username;
36
+        $this->username = $username;
37 37
 
38 38
         $num_args = (int) func_num_args(); // get number of arguments passed to 
39 39
 
40
-        if ($num_args == 0 ||  $num_args > 1) {
40
+        if ($num_args == 0 || $num_args > 1) {
41 41
             throw ArgumentCheckException::NullOfOverflowArgumentException("Argument missing: only one argument is allowed");
42 42
         }
43 43
       
44
-        $this->username                         = $username;
44
+        $this->username = $username;
45 45
         
46 46
 
47 47
         $this->checkNullUsernameException();
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
      */
63 63
     public function getGitApiData()
64 64
     {
65
-        $this->response = $this->guzzleClient->get('https://api.github.com/users/'.$this->username.'?client_id='.$this->clientId .'&client_secret='.$this->clientSecret);
65
+        $this->response = $this->guzzleClient->get('https://api.github.com/users/'.$this->username.'?client_id='.$this->clientId.'&client_secret='.$this->clientSecret);
66 66
         return $this->response->getBody();
67 67
     }
68 68
 
Please login to merge, or discard this patch.