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 ( e0afd3...2df211 )
by Caspar
04:42
created
app/Http/Controllers/RankingController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
     	$totalPoints = CodeCount::getTotalPoints();
27 27
 	    $rankObj = DB::select('SELECT * FROM users WHERE total_points = '.$totalPoints.' ORDER BY TIMEDIFF(start, end) DESC;');
28 28
 
29
-	    for($i = 0; $i < count($rankObj); $i++){
29
+	    for ($i = 0; $i < count($rankObj); $i++) {
30 30
 			DB::table('users')->where('name_gen', $rankObj[$i]->name_gen)->update(['rank' => (++$i)]);
31 31
 			$i--;
32 32
 	    }
Please login to merge, or discard this patch.
app/Http/Controllers/AJAX.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
 		$totalPoints = CodeCount::getTotalPoints();
25 25
 		$rankObj = DB::select('SELECT * FROM users WHERE total_points = '.$totalPoints.' ORDER BY TIMEDIFF(start, end) DESC;');
26 26
 
27
-		for($i = 0; $i < count($rankObj); $i++){
27
+		for ($i = 0; $i < count($rankObj); $i++) {
28 28
 			DB::table('users')->where('name_gen', $rankObj[$i]->name_gen)->update(['rank' => (++$i)]);
29 29
 			$i--;
30 30
 		}
Please login to merge, or discard this patch.