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 ( 5ae30b...6ce4b0 )
by Temitope
02:50
created
src/EvangelistStatus.php 7 patches
Doc Comments   +1 added lines, -5 removed lines patch added patch discarded remove patch
@@ -113,8 +113,4 @@
 block discarded – undo
113 113
      */
114 114
     public function checkNullUsernameException()
115 115
     {
116
-        if ($this->checkEmptyGithubUsername($this->username)) {
117
-            throw EvangelistStatusException::createEvangelistStatusException("Username is Empty, please provide a GitHub valid username");
118
-        }
119
-    }
120
-}  
116
+        if ($this->checkEmptyGithubUsername($this->username
121 117
\ No newline at end of file
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -5 removed lines patch added patch discarded remove patch
@@ -113,8 +113,4 @@
 block discarded – undo
113 113
      */
114 114
     public function checkNullUsernameException()
115 115
     {
116
-        if ($this->checkEmptyGithubUsername($this->username)) {
117
-            throw EvangelistStatusException::createEvangelistStatusException("Username is Empty, please provide a GitHub valid username");
118
-        }
119
-    }
120
-}  
116
+        if ($this->checkEmptyGithubUsername($this->username
121 117
\ No newline at end of file
Please login to merge, or discard this patch.
Indentation   +1 added lines, -5 removed lines patch added patch discarded remove patch
@@ -113,8 +113,4 @@
 block discarded – undo
113 113
      */
114 114
     public function checkNullUsernameException()
115 115
     {
116
-        if ($this->checkEmptyGithubUsername($this->username)) {
117
-            throw EvangelistStatusException::createEvangelistStatusException("Username is Empty, please provide a GitHub valid username");
118
-        }
119
-    }
120
-}  
116
+        if ($this->checkEmptyGithubUsername($this->username
121 117
\ No newline at end of file
Please login to merge, or discard this patch.
Switch Indentation   +1 added lines, -5 removed lines patch added patch discarded remove patch
@@ -113,8 +113,4 @@
 block discarded – undo
113 113
      */
114 114
     public function checkNullUsernameException()
115 115
     {
116
-        if ($this->checkEmptyGithubUsername($this->username)) {
117
-            throw EvangelistStatusException::createEvangelistStatusException("Username is Empty, please provide a GitHub valid username");
118
-        }
119
-    }
120
-}  
116
+        if ($this->checkEmptyGithubUsername($this->username
121 117
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +4 added lines, -8 removed lines patch added patch discarded remove patch
@@ -33,14 +33,14 @@  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
-<<<<<<< HEAD
43
+<< << <<< HEAD
44 44
 
45 45
 =======
46 46
       
@@ -113,8 +113,4 @@  discard block
 block discarded – undo
113 113
      */
114 114
     public function checkNullUsernameException()
115 115
     {
116
-        if ($this->checkEmptyGithubUsername($this->username)) {
117
-            throw EvangelistStatusException::createEvangelistStatusException("Username is Empty, please provide a GitHub valid username");
118
-        }
119
-    }
120
-}  
116
+        if ($this->checkEmptyGithubUsername($this->username
121 117
\ No newline at end of file
Please login to merge, or discard this patch.
Braces   +1 added lines, -5 removed lines patch added patch discarded remove patch
@@ -113,8 +113,4 @@
 block discarded – undo
113 113
      */
114 114
     public function checkNullUsernameException()
115 115
     {
116
-        if ($this->checkEmptyGithubUsername($this->username)) {
117
-            throw EvangelistStatusException::createEvangelistStatusException("Username is Empty, please provide a GitHub valid username");
118
-        }
119
-    }
120
-}  
116
+        if ($this->checkEmptyGithubUsername($this->username
121 117
\ No newline at end of file
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -5 removed lines patch added patch discarded remove patch
@@ -113,8 +113,4 @@
 block discarded – undo
113 113
      */
114 114
     public function checkNullUsernameException()
115 115
     {
116
-        if ($this->checkEmptyGithubUsername($this->username)) {
117
-            throw EvangelistStatusException::createEvangelistStatusException("Username is Empty, please provide a GitHub valid username");
118
-        }
119
-    }
120
-}  
116
+        if ($this->checkEmptyGithubUsername($this->username
121 117
\ No newline at end of file
Please login to merge, or discard this patch.
src/Ranking/EvangelistStatusRanking.php 7 patches
Doc Comments   -4 removed lines patch added patch discarded remove patch
@@ -46,7 +46,3 @@
 block discarded – undo
46 46
         }
47 47
     }
48 48
 <<<<<<< HEAD
49
-    
50
-=======
51
->>>>>>> 5ae30be3b2ebb67e6de8fe512888cf961febb1ad
52
- }
Please login to merge, or discard this patch.
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -46,7 +46,3 @@
 block discarded – undo
46 46
         }
47 47
     }
48 48
 <<<<<<< HEAD
49
-    
50
-=======
51
->>>>>>> 5ae30be3b2ebb67e6de8fe512888cf961febb1ad
52
- }
Please login to merge, or discard this patch.
Indentation   +13 added lines, -17 removed lines patch added patch discarded remove patch
@@ -11,10 +11,10 @@  discard block
 block discarded – undo
11 11
  * @license  <https://opensource.org/license/MIT> MIT
12 12
  */
13 13
 
14
- use Laztopaz\OpenSourceEvangelistStatus\EvangelistStatusRankingInterface;
14
+    use Laztopaz\OpenSourceEvangelistStatus\EvangelistStatusRankingInterface;
15 15
 
16
- class EvangelistStatusRanking implements EvangelistStatusRankingInterface
17
- {
16
+    class EvangelistStatusRanking implements EvangelistStatusRankingInterface
17
+    {
18 18
     /**
19 19
      * This method ranks GitHub users based on the number of repositories they have
20 20
      * @param  int $noOfRepo
@@ -22,16 +22,16 @@  discard block
 block discarded – undo
22 22
      */
23 23
     public static function determineEvangelistLevel($noOfRepo)
24 24
     {
25
-    	if ($noOfRepo >= 5 && $noOfRepo<= 10) {
26
-    		$evangelistTypeMessage = "Damn It!!! Please make the world better, Oh Ye Prodigal Junior Evangelist";
27
-    	} else if ($noOfRepo >= 11 && $noOfRepo <= 20) {
28
-    		$evangelistTypeMessage = "Keep Up The Good Work, I crown you Associate Evangelist";
29
-    	} else if ($noOfRepo >= 21) {
30
-    		$evangelistTypeMessage = "Yeah, I crown you Senior Evangelist. Thanks for making the world a better place";
31
-    	} else {
32
-    	 $evangelistTypeMessage = "Fuck Off!!! Please make the world better, Oh Ye Lazy Evangelist";
33
-    	}
34
-    	return $evangelistTypeMessage;
25
+        if ($noOfRepo >= 5 && $noOfRepo<= 10) {
26
+            $evangelistTypeMessage = "Damn It!!! Please make the world better, Oh Ye Prodigal Junior Evangelist";
27
+        } else if ($noOfRepo >= 11 && $noOfRepo <= 20) {
28
+            $evangelistTypeMessage = "Keep Up The Good Work, I crown you Associate Evangelist";
29
+        } else if ($noOfRepo >= 21) {
30
+            $evangelistTypeMessage = "Yeah, I crown you Senior Evangelist. Thanks for making the world a better place";
31
+        } else {
32
+            $evangelistTypeMessage = "Fuck Off!!! Please make the world better, Oh Ye Lazy Evangelist";
33
+        }
34
+        return $evangelistTypeMessage;
35 35
     }
36 36
 
37 37
     /**
@@ -46,7 +46,3 @@  discard block
 block discarded – undo
46 46
         }
47 47
     }
48 48
 <<<<<<< HEAD
49
-    
50
-=======
51
->>>>>>> 5ae30be3b2ebb67e6de8fe512888cf961febb1ad
52
- }
Please login to merge, or discard this patch.
Switch Indentation   -4 removed lines patch added patch discarded remove patch
@@ -46,7 +46,3 @@
 block discarded – undo
46 46
         }
47 47
     }
48 48
 <<<<<<< HEAD
49
-    
50
-=======
51
->>>>>>> 5ae30be3b2ebb67e6de8fe512888cf961febb1ad
52
- }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -6 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
      */
23 23
     public static function determineEvangelistLevel($noOfRepo)
24 24
     {
25
-    	if ($noOfRepo >= 5 && $noOfRepo<= 10) {
25
+    	if ($noOfRepo >= 5 && $noOfRepo <= 10) {
26 26
     		$evangelistTypeMessage = "Damn It!!! Please make the world better, Oh Ye Prodigal Junior Evangelist";
27 27
     	} else if ($noOfRepo >= 11 && $noOfRepo <= 20) {
28 28
     		$evangelistTypeMessage = "Keep Up The Good Work, I crown you Associate Evangelist";
@@ -45,8 +45,4 @@  discard block
 block discarded – undo
45 45
             return true;
46 46
         }
47 47
     }
48
-<<<<<<< HEAD
49
-    
50
-=======
51
->>>>>>> 5ae30be3b2ebb67e6de8fe512888cf961febb1ad
52
- }
48
+<< << <<< HEAD
Please login to merge, or discard this patch.
Braces   -4 removed lines patch added patch discarded remove patch
@@ -46,7 +46,3 @@
 block discarded – undo
46 46
         }
47 47
     }
48 48
 <<<<<<< HEAD
49
-    
50
-=======
51
->>>>>>> 5ae30be3b2ebb67e6de8fe512888cf961febb1ad
52
- }
Please login to merge, or discard this patch.
Upper-Lower-Casing   -4 removed lines patch added patch discarded remove patch
@@ -46,7 +46,3 @@
 block discarded – undo
46 46
         }
47 47
     }
48 48
 <<<<<<< HEAD
49
-    
50
-=======
51
->>>>>>> 5ae30be3b2ebb67e6de8fe512888cf961febb1ad
52
- }
Please login to merge, or discard this patch.