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 ( 8b9cc9...12f9b5 )
by Caspar
33:00 queued 29:12
created
app/Http/Controllers/DescriptionController.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -4,10 +4,10 @@
 block discarded – undo
4 4
 
5 5
 class DescriptionController extends Controller
6 6
 {
7
-	/**
8
-	 * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
9
-	 */
10
-	public function showDescription()
7
+    /**
8
+     * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
9
+     */
10
+    public function showDescription()
11 11
     {
12 12
         return view('user.description');
13 13
     }
Please login to merge, or discard this patch.
app/Http/Controllers/RankingController.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -22,10 +22,10 @@
 block discarded – undo
22 22
         return view('leader.ranking', ['rankArray' => $rankArray, 'userRank' => $userRank]);
23 23
     }
24 24
 
25
-	/**
26
-	 *  Rang wird berechnet und in DB zugewisen
27
-	 */
28
-	private function setRank()
25
+    /**
26
+     *  Rang wird berechnet und in DB zugewisen
27
+     */
28
+    private function setRank()
29 29
     {
30 30
         $totalPoints = CodeCount::getTotalPoints();
31 31
         $rankObj = DB::select('SELECT * FROM users WHERE total_points = '.$totalPoints.' ORDER BY TIMEDIFF(start, end) DESC;');
Please login to merge, or discard this patch.
app/Http/Controllers/CodeCount.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -44,17 +44,17 @@
 block discarded – undo
44 44
         return $totalPoints;
45 45
     }
46 46
 
47
-	/**
48
-	 *
49
-	 */
50
-	public static function setRank()
51
-	{
52
-		$totalPoints = CodeCount::getTotalPoints();
53
-		$rankObj = DB::select('SELECT * FROM users WHERE total_points = '.$totalPoints.' ORDER BY TIMEDIFF(start, end) DESC;');
54
-
55
-		for ($i = 0; $i < count($rankObj); $i++) {
56
-			DB::table('users')->where('name_gen', $rankObj[$i]->name_gen)->update(['rank' => (++$i)]);
57
-			$i--;
58
-		}
59
-	}
47
+    /**
48
+     *
49
+     */
50
+    public static function setRank()
51
+    {
52
+        $totalPoints = CodeCount::getTotalPoints();
53
+        $rankObj = DB::select('SELECT * FROM users WHERE total_points = '.$totalPoints.' ORDER BY TIMEDIFF(start, end) DESC;');
54
+
55
+        for ($i = 0; $i < count($rankObj); $i++) {
56
+            DB::table('users')->where('name_gen', $rankObj[$i]->name_gen)->update(['rank' => (++$i)]);
57
+            $i--;
58
+        }
59
+    }
60 60
 }
Please login to merge, or discard this patch.