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 ( c614cd...3b4059 )
by Temitope
02:22
created
src/Interface/EvangelistStatusInterface.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -24,14 +24,14 @@
 block discarded – undo
24 24
      * This method returns a string depending on number of user repo on Github
25 25
      */
26 26
     
27
-	public function getStatus();
27
+    public function getStatus();
28 28
 
29
-	/**
29
+    /**
30 30
      * 
31 31
      * This method returns number of the user repo on Github
32 32
      */
33 33
     
34
-	public function getNumberOfRepos();
34
+    public function getNumberOfRepos();
35 35
 
36 36
 
37 37
     /**
Please login to merge, or discard this patch.
src/Exceptions/EvangelistStatusException.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -15,15 +15,15 @@
 block discarded – undo
15 15
 class EvangelistStatusException extends Exception
16 16
 {
17 17
     /**
18
-	 * This method checkEmptyGithubusername
19
-	 * @param String $username Github username
20
-	 *
21
-	 */
22
-	public function checkEmptyGithubUsername($username)
23
-	{
24
-		if ($username == "") 
25
-		{
26
-			throw new Exception("Invalid Github username");
27
-		}
28
-	}
18
+     * This method checkEmptyGithubusername
19
+     * @param String $username Github username
20
+     *
21
+     */
22
+    public function checkEmptyGithubUsername($username)
23
+    {
24
+        if ($username == "") 
25
+        {
26
+            throw new Exception("Invalid Github username");
27
+        }
28
+    }
29 29
 }
30 30
\ No newline at end of file
Please login to merge, or discard this patch.
src/Interface/EvangelistStatusRankingInterface.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -1,21 +1,21 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Laztopaz\OpenSourceEvangelistStatus;
3 3
 /**
4
- *
5
- * EvangelistStatusRankingInterface  class
6
- * 
7
- * @package  Laztopaz\OpenSourceEvangelistStatus
8
- * @author   Temitope Olotin <[email protected]>
9
- * @license  <https://opensource.org/license/MIT> MIT
10
- */
4
+     *
5
+     * EvangelistStatusRankingInterface  class
6
+     * 
7
+     * @package  Laztopaz\OpenSourceEvangelistStatus
8
+     * @author   Temitope Olotin <[email protected]>
9
+     * @license  <https://opensource.org/license/MIT> MIT
10
+     */
11 11
 
12 12
 interface EvangelistStatusRankingInterface
13 13
 {
14 14
     /**
15
-	 *
16
-	 * This method returns the evangelist level 
17
-	 */
15
+     *
16
+     * This method returns the evangelist level 
17
+     */
18 18
 	
19
-	public function determineEvangelistLevel($noOfRepositories);
19
+    public function determineEvangelistLevel($noOfRepositories);
20 20
 
21 21
 }
Please login to merge, or discard this patch.
src/Ranking/EvangelistStatusRanking.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -10,11 +10,11 @@  discard block
 block discarded – undo
10 10
  * @license  <https://opensource.org/license/MIT> MIT
11 11
  */
12 12
 
13
- use Laztopaz\OpenSourceEvangelistStatus\EvangelistStatusRankingInterface;
13
+    use Laztopaz\OpenSourceEvangelistStatus\EvangelistStatusRankingInterface;
14 14
 
15 15
 
16
- class EvangelistStatusRanking implements EvangelistStatusRankingInterface
17
- {
16
+    class EvangelistStatusRanking implements EvangelistStatusRankingInterface
17
+    {
18 18
 
19 19
     public function determineEvangelistLevel($noOfRepo)
20 20
     {
@@ -22,17 +22,17 @@  discard block
 block discarded – undo
22 22
             return false;
23 23
         }
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 {
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 32
             $evangelistTypeMessage = "Fuck Off!!! Please make the world better, Oh Ye Lazy Evangelist";
33 33
         }
34 34
 
35
-    	return $evangelistTypeMessage;
35
+        return $evangelistTypeMessage;
36 36
     }
37 37
 
38
- }
39 38
\ No newline at end of file
39
+    }
40 40
\ No newline at end of file
Please login to merge, or discard this patch.