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
app/Providers/RouteServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
 	 */
38 38
 	public function map(Router $router)
39 39
 	{
40
-		$router->group(['namespace' => $this->namespace], function ($router) {
40
+		$router->group(['namespace' => $this->namespace], function($router) {
41 41
 			require app_path('Http/routes.php');
42 42
 		});
43 43
 	}
Please login to merge, or discard this patch.
app/Providers/SeoServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
      */
35 35
     public function register()
36 36
     {
37
-        $this->app->bind('xe.seo', function ($app) {
37
+        $this->app->bind('xe.seo', function($app) {
38 38
             $setting = new Setting($app['xe.config'], $app['xe.storage'], $app['xe.media'], $app['xe.keygen']);
39 39
             return new SeoHandler(
40 40
                 [
Please login to merge, or discard this patch.
app/Providers/TagServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
      */
55 55
     public function register()
56 56
     {
57
-        $this->app->bind('xe.tag', function ($app) {
57
+        $this->app->bind('xe.tag', function($app) {
58 58
             $proxyClass = $app['xe.interception']->proxy(TagHandler::class, 'Tag');
59 59
             return new $proxyClass(
60 60
                 new TagRepository($app['xe.db']->connection()),
Please login to merge, or discard this patch.
app/Providers/ThemeServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
     {
29 29
         $this->app->singleton(
30 30
             'xe.theme',
31
-            function ($app) {
31
+            function($app) {
32 32
 
33 33
                 /** @var PluginRegister $register */
34 34
                 $register = $app['xe.pluginRegister'];
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
             intercept(
87 87
                 'Theme@getSelectedTheme',
88 88
                 'preview_theme',
89
-                function ($target) use ($preview_theme) {
89
+                function($target) use ($preview_theme) {
90 90
                     if (!auth()->user()->isAdmin()) {
91 91
                         throw new AccessDeniedHttpException();
92 92
                     }
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
 
124 124
     private function registerMobileResolver()
125 125
     {
126
-        $this->app['xe.theme']->setMobileResolver(function(){
126
+        $this->app['xe.theme']->setMobileResolver(function() {
127 127
             return app('request')->isMobile();
128 128
         });
129 129
     }
Please login to merge, or discard this patch.
app/Providers/ToggleMenuServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
      */
53 53
     public function register()
54 54
     {
55
-        $this->app->bind('xe.toggleMenu', function ($app) {
55
+        $this->app->bind('xe.toggleMenu', function($app) {
56 56
             $proxyClass = $app['xe.interception']->proxy(ToggleMenuHandler::class, 'ToggleMenu');
57 57
             return new $proxyClass($app['xe.pluginRegister'], $app['xe.config']);
58 58
         }, true);
Please login to merge, or discard this patch.
app/Providers/TrashServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
     {
46 46
         $this->app->singleton(
47 47
             'xe.trash',
48
-            function ($app) {
48
+            function($app) {
49 49
                 $proxyClass = $app['xe.interception']->proxy(TrashManager::class, 'Trash');
50 50
                 return new $proxyClass($app['xe.register'], $app['xe.db']->connection());
51 51
             }
@@ -62,8 +62,8 @@  discard block
 block discarded – undo
62 62
         intercept(
63 63
             'Settings@getManageMenu',
64 64
             ['trash.managemenu' => ['before' => 'manage.sort']],
65
-            function ($target) {
66
-                $menu          = $target();
65
+            function($target) {
66
+                $menu = $target();
67 67
                 $menu['contents']['submenu']['trash'] = [
68 68
                     'title' => '휴지통 관리',
69 69
                     'description' => 'blur blur~',
Please login to merge, or discard this patch.
app/Providers/UIObjectServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
     {
37 37
         $this->app->singleton(
38 38
             'xe.uiobject',
39
-            function ($app) {
39
+            function($app) {
40 40
 
41 41
                 $aliases = $app['config']->get('xe.uiobject.aliases');
42 42
 
Please login to merge, or discard this patch.
config/database.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
 	|
27 27
 	*/
28 28
 
29
-	'default' => env('DB_CONNECTION','mysql'),
29
+	'default' => env('DB_CONNECTION', 'mysql'),
30 30
 
31 31
 	/*
32 32
 	|--------------------------------------------------------------------------
Please login to merge, or discard this patch.
database/factories/ModelFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 |
12 12
 */
13 13
 
14
-$factory->define(App\User::class, function (Faker\Generator $faker) {
14
+$factory->define(App\User::class, function(Faker\Generator $faker) {
15 15
     return [
16 16
         'name' => $faker->name,
17 17
         'email' => $faker->email,
Please login to merge, or discard this patch.