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.
Test Failed
Push — master ( 466842...c61140 )
by Caspar
03:20
created
app/Http/Controllers/GenerateController.php 2 patches
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
     {
31 31
         $this->preCleanup();
32 32
 
33
-		$countQR = $this->setCodeCount($request['countQR']);
33
+        $countQR = $this->setCodeCount($request['countQR']);
34 34
 
35 35
         for ($i = 0; $i < $countQR; ++$i) {
36 36
             $code = $this->generateCodes();
@@ -45,10 +45,10 @@  discard block
 block discarded – undo
45 45
         return back();
46 46
     }
47 47
 
48
-	/**
49
-	 *
50
-	 */
51
-	private function preCleanup()
48
+    /**
49
+     *
50
+     */
51
+    private function preCleanup()
52 52
     {
53 53
         DB::table('game_codes')->delete();
54 54
         DB::table('users_codes')->delete();
@@ -60,13 +60,13 @@  discard block
 block discarded – undo
60 60
         File::delete(File::glob(storage_path().'/pdf/codes/*.png'));
61 61
     }
62 62
 
63
-	/**
64
-	 *
65
-	 */
66
-	private function setCodeCount($codeCount){
67
-		DB::table('game_admin')->insert(['code_count' => $codeCount]);
68
-		return $codeCount;
69
-	}
63
+    /**
64
+     *
65
+     */
66
+    private function setCodeCount($codeCount){
67
+        DB::table('game_admin')->insert(['code_count' => $codeCount]);
68
+        return $codeCount;
69
+    }
70 70
 
71 71
     /**
72 72
      * @throws \Exception
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
 	/**
64 64
 	 *
65 65
 	 */
66
-	private function setCodeCount($codeCount){
66
+	private function setCodeCount($codeCount) {
67 67
 		DB::table('game_admin')->insert(['code_count' => $codeCount]);
68 68
 		return $codeCount;
69 69
 	}
Please login to merge, or discard this patch.