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 ( c1fc94...14aa9d )
by Nikhil
09:34
created
app/Console/Kernel.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      * @var array
14 14
      */
15 15
     protected $commands = [
16
-         Commands\Init::class,
16
+            Commands\Init::class,
17 17
     ];
18 18
 
19 19
     /**
Please login to merge, or discard this patch.
app/Console/Commands/Init.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
     {
32 32
         $this->info('Starting Installation...');
33 33
 
34
-        if ( ! env('APP_KEY')) {
34
+        if (!env('APP_KEY')) {
35 35
             $this->info('Generating app key');
36 36
             Artisan::call('key:generate');
37 37
         } else {
@@ -39,11 +39,11 @@  discard block
 block discarded – undo
39 39
         }
40 40
 
41 41
         $this->info('Migrating database');
42
-        Artisan::call('migrate', ['--force' => true]);
42
+        Artisan::call('migrate', [ '--force' => true ]);
43 43
 
44
-        if ( ! User::count()) {
44
+        if (!User::count()) {
45 45
             $this->info('Seeding initial data');
46
-            Artisan::call('db:seed', ['--force' => true]);
46
+            Artisan::call('db:seed', [ '--force' => true ]);
47 47
         } else {
48 48
             $this->comment('Skipping - Data already seeded');
49 49
         }
Please login to merge, or discard this patch.