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 ( 1a1e57...ace484 )
by
unknown
18:25
created
resources/Skins/Plugin/PluginSettingsSkin.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,8 +55,8 @@
 block discarded – undo
55 55
         $this->loadDefault();
56 56
 
57 57
         app('xe.frontend')->js([
58
-           'assets/vendor/swiper2/idangerous.swiper.js',
59
-           'assets/core/plugin/js/plugin.js'
58
+            'assets/vendor/swiper2/idangerous.swiper.js',
59
+            'assets/core/plugin/js/plugin.js'
60 60
         ])->appendTo('head')->load();
61 61
         app('xe.frontend')->css('assets/vendor/swiper2/idangerous.swiper.css')
62 62
             ->before('assets/core/settings/css/admin.css')->load();
Please login to merge, or discard this patch.
migrations/UserMigration.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -114,11 +114,11 @@
 block discarded – undo
114 114
     public function installed()
115 115
     {
116 116
         \DB::table('config')->insert([
117
-                                         ['name' => 'user', 'vars' => '[]'],
118
-                                         ['name' => 'user.common', 'vars' => '{"secureLevel":"low","useCaptcha":false,"webmasterName":"webmaster","webmasterEmail":"[email protected]","agreement":"","privacy":""}'],
119
-                                         ['name' => 'user.join', 'vars' => '{"joinable":true,"useEmailCertify":false,"useCaptcha":false}'],
120
-                                         ['name' => 'user.usermenu', 'vars' => '{"activate":[]}'],
121
-                                     ]);
117
+                                            ['name' => 'user', 'vars' => '[]'],
118
+                                            ['name' => 'user.common', 'vars' => '{"secureLevel":"low","useCaptcha":false,"webmasterName":"webmaster","webmasterEmail":"[email protected]","agreement":"","privacy":""}'],
119
+                                            ['name' => 'user.join', 'vars' => '{"joinable":true,"useEmailCertify":false,"useCaptcha":false}'],
120
+                                            ['name' => 'user.usermenu', 'vars' => '{"activate":[]}'],
121
+                                        ]);
122 122
     }
123 123
 
124 124
     public function update($currentVersion)
Please login to merge, or discard this patch.
app/Http/Controllers/MenuController.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -824,7 +824,7 @@
 block discarded – undo
824 824
 
825 825
         XeDB::commit();
826 826
 
827
-		return Redirect::back()->with('alert', ['type' => 'success', 'message' => 'success']);
827
+        return Redirect::back()->with('alert', ['type' => 'success', 'message' => 'success']);
828 828
     }
829 829
 
830 830
     /**
Please login to merge, or discard this patch.
app/Console/Kernel.php 1 patch
Indentation   +55 added lines, -55 removed lines patch added patch discarded remove patch
@@ -8,51 +8,51 @@  discard block
 block discarded – undo
8 8
 class Kernel extends ConsoleKernel
9 9
 {
10 10
 
11
-	/**
12
-	 * The bootstrap classes for the application.
13
-	 *
14
-	 * @var array
15
-	 */
16
-	protected $bootstrappers = [
17
-			'Illuminate\Foundation\Bootstrap\DetectEnvironment',
18
-			'App\Bootstrappers\LoadConfiguration',
19
-			'Illuminate\Foundation\Bootstrap\ConfigureLogging',
20
-			'Illuminate\Foundation\Bootstrap\HandleExceptions',
21
-			'Illuminate\Foundation\Bootstrap\RegisterFacades',
22
-			'Illuminate\Foundation\Bootstrap\SetRequestForConsole',
23
-			'Illuminate\Foundation\Bootstrap\RegisterProviders',
24
-			'Illuminate\Foundation\Bootstrap\BootProviders',
25
-	];
26
-
27
-	/**
28
-	 * The Artisan commands provided by your application.
29
-	 *
30
-	 * @var array
31
-	 */
32
-	protected $commands = [
33
-		\App\Console\Commands\Inspire::class,
11
+    /**
12
+     * The bootstrap classes for the application.
13
+     *
14
+     * @var array
15
+     */
16
+    protected $bootstrappers = [
17
+            'Illuminate\Foundation\Bootstrap\DetectEnvironment',
18
+            'App\Bootstrappers\LoadConfiguration',
19
+            'Illuminate\Foundation\Bootstrap\ConfigureLogging',
20
+            'Illuminate\Foundation\Bootstrap\HandleExceptions',
21
+            'Illuminate\Foundation\Bootstrap\RegisterFacades',
22
+            'Illuminate\Foundation\Bootstrap\SetRequestForConsole',
23
+            'Illuminate\Foundation\Bootstrap\RegisterProviders',
24
+            'Illuminate\Foundation\Bootstrap\BootProviders',
25
+    ];
26
+
27
+    /**
28
+     * The Artisan commands provided by your application.
29
+     *
30
+     * @var array
31
+     */
32
+    protected $commands = [
33
+        \App\Console\Commands\Inspire::class,
34 34
         \App\Console\Commands\XeInstall::class,
35
-		\App\Console\Commands\Trash::class,
36
-		\App\Console\Commands\Schema::class,
37
-		\App\Console\Commands\PutTranslation::class,
38
-		\App\Console\Commands\XeCacheClear::class,
39
-		\App\Console\Commands\StorageOptimize::class,
40
-		\App\Console\Commands\Site::class,
41
-		\App\Console\Commands\PluginMakeCommand::class,
42
-		\App\Console\Commands\PluginInstallCommand::class,
43
-		\App\Console\Commands\ThemeMakeCommand::class,
44
-	];
45
-
46
-	/**
47
-	 * Define the application's command schedule.
48
-	 *
49
-	 * @param  \Illuminate\Console\Scheduling\Schedule  $schedule
50
-	 * @return void
51
-	 */
52
-	protected function schedule(Schedule $schedule)
53
-	{
54
-		$schedule->command('inspire')->hourly();
55
-	}
35
+        \App\Console\Commands\Trash::class,
36
+        \App\Console\Commands\Schema::class,
37
+        \App\Console\Commands\PutTranslation::class,
38
+        \App\Console\Commands\XeCacheClear::class,
39
+        \App\Console\Commands\StorageOptimize::class,
40
+        \App\Console\Commands\Site::class,
41
+        \App\Console\Commands\PluginMakeCommand::class,
42
+        \App\Console\Commands\PluginInstallCommand::class,
43
+        \App\Console\Commands\ThemeMakeCommand::class,
44
+    ];
45
+
46
+    /**
47
+     * Define the application's command schedule.
48
+     *
49
+     * @param  \Illuminate\Console\Scheduling\Schedule  $schedule
50
+     * @return void
51
+     */
52
+    protected function schedule(Schedule $schedule)
53
+    {
54
+        $schedule->command('inspire')->hourly();
55
+    }
56 56
 
57 57
     /**
58 58
      * Bootstrap the application for artisan commands.
@@ -84,18 +84,18 @@  discard block
 block discarded – undo
84 84
      * @return void
85 85
      */
86 86
     protected function resetForFramework()
87
-	{
88
-		$this->resetProviders();
89
-		$this->setCommandBeforeInstall();
90
-	}
87
+    {
88
+        $this->resetProviders();
89
+        $this->setCommandBeforeInstall();
90
+    }
91 91
 
92 92
     /**
93 93
      * Define for providers of framework.
94 94
      *
95 95
      * @return void
96 96
      */
97
-	protected function resetProviders()
98
-	{
97
+    protected function resetProviders()
98
+    {
99 99
         $this->app['events']->listen('bootstrapped: App\Bootstrappers\LoadConfiguration', function ($app) {
100 100
             $config = $app['config'];
101 101
 
@@ -106,20 +106,20 @@  discard block
 block discarded – undo
106 106
 
107 107
             $config->set('app.providers', $providers);
108 108
         });
109
-	}
109
+    }
110 110
 
111 111
     /**
112 112
      * Define commands for previously installation
113 113
      *
114 114
      * @return void
115 115
      */
116
-	protected function setCommandBeforeInstall()
117
-	{
118
-		$this->commands = array_intersect($this->commands, [
116
+    protected function setCommandBeforeInstall()
117
+    {
118
+        $this->commands = array_intersect($this->commands, [
119 119
             \App\Console\Commands\Inspire::class,
120 120
             \App\Console\Commands\XeInstall::class
121 121
         ]);
122
-	}
122
+    }
123 123
 
124 124
     /**
125 125
      * Define commands for after installation
Please login to merge, or discard this patch.