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 ( eb7034...336670 )
by
unknown
10:15
created
migrations/CounterMigration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 
10 10
     public function install()
11 11
     {
12
-        Schema::create('counter_log', function ($table) {
12
+        Schema::create('counter_log', function($table) {
13 13
             $table->engine = "InnoDB";
14 14
 
15 15
             $table->bigIncrements('id');
Please login to merge, or discard this patch.
migrations/MediaMigration.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
 
10 10
     public function install()
11 11
     {
12
-        Schema::create('files_image', function (Blueprint $table) {
12
+        Schema::create('files_image', function(Blueprint $table) {
13 13
             $table->engine = "InnoDB";
14 14
 
15 15
             $table->string('id', 36);
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
             $table->index('originId');
24 24
         });
25 25
 
26
-        Schema::create('files_video', function (Blueprint $table) {
26
+        Schema::create('files_video', function(Blueprint $table) {
27 27
             $table->engine = "InnoDB";
28 28
 
29 29
             $table->string('id', 36);
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
             $table->index('originId');
38 38
         });
39 39
 
40
-        Schema::create('files_audio', function (Blueprint $table) {
40
+        Schema::create('files_audio', function(Blueprint $table) {
41 41
             $table->engine = "InnoDB";
42 42
 
43 43
             $table->string('id', 36);
Please login to merge, or discard this patch.
migrations/PermissionMigration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 
10 10
     public function install()
11 11
     {
12
-        Schema::create('permissions', function (Blueprint $table) {
12
+        Schema::create('permissions', function(Blueprint $table) {
13 13
             $table->engine = "InnoDB";
14 14
 
15 15
             $table->increments('id');
Please login to merge, or discard this patch.
migrations/RoutingMigration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 
10 10
     public function install()
11 11
     {
12
-        Schema::create('instanceRoute', function (Blueprint $table) {
12
+        Schema::create('instanceRoute', function(Blueprint $table) {
13 13
             $table->engine = "InnoDB";
14 14
 
15 15
             $table->increments('id');
Please login to merge, or discard this patch.
migrations/SiteMigration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 
22 22
     public function install()
23 23
     {
24
-        Schema::create('site', function (Blueprint $table) {
24
+        Schema::create('site', function(Blueprint $table) {
25 25
             $table->engine = "InnoDB";
26 26
 
27 27
             $table->string('host');
Please login to merge, or discard this patch.
migrations/TemporaryMigration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 
10 10
     public function install()
11 11
     {
12
-        Schema::create('temporary', function (Blueprint $table) {
12
+        Schema::create('temporary', function(Blueprint $table) {
13 13
             $table->engine = "InnoDB";
14 14
 
15 15
             $table->string('id', '36');
Please login to merge, or discard this patch.
resources/UIObjects/Menu/MenuSelector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
         foreach ($menus as $menu) {
43 43
             $option = PhpQuery::pq('<option></option>');
44 44
             $option->appendTo($select)->attr('value', $menu->id)->html($menu->title);
45
-            if(isset($args['selected']) && $menu->id == $args['selected']) {
45
+            if (isset($args['selected']) && $menu->id == $args['selected']) {
46 46
                 $option->attr('selected', 'selected');
47 47
             }
48 48
         }
Please login to merge, or discard this patch.
app/Providers/InterceptionServiceProvider.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.
app/Providers/ModuleServiceProvider.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.