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 ( 224b98...e49036 )
by Temitope
02:46
created
src/EvangelistStatus.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     { 
37 37
         $num_args = (int) func_num_args();
38 38
 
39
-        if ($num_args == 0 ||  $num_args > 1)
39
+        if ($num_args == 0 || $num_args > 1)
40 40
         {
41 41
             throw ArgumentCheckException::NullOfOverflowArgumentException("Argument missing: only one argument is allowed");
42 42
         }
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
      */
65 65
     public function getGitApiData()
66 66
     {
67
-        $this->response = $this->guzzleClient->get('https://api.github.com/users/'.$this->username.'?client_id='.$this->clientId .'&client_secret='.$this->clientSecret);
67
+        $this->response = $this->guzzleClient->get('https://api.github.com/users/'.$this->username.'?client_id='.$this->clientId.'&client_secret='.$this->clientSecret);
68 68
             
69 69
             return $this->response->getBody();
70 70
     }
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
     {
91 91
         $evangelistRanking = new EvangelistStatusRanking();
92 92
 
93
-        if($evangelistRanking->checkForNullRepos($this->noOfGitRepos))
93
+        if ($evangelistRanking->checkForNullRepos($this->noOfGitRepos))
94 94
         {
95 95
             throw NullNoOfReposException::createNullReposException("Empty GitHub repository");
96 96
         }
Please login to merge, or discard this patch.