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
app/Providers/SiteServiceProvider.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/SkinServiceProvider.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/TemporaryServiceProvider.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/HttpServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
         // set config to request when rebind request
29 29
         $this->app->rebinding(
30 30
             'request',
31
-            function ($app, $request) {
31
+            function($app, $request) {
32 32
                 return $request->setConfig($app['config']);
33 33
             }
34 34
         );
Please login to merge, or discard this patch.
app/Providers/MobileServiceProvider.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
     {
40 40
         $this->app->rebinding(
41 41
             'request',
42
-            function ($app, $request) {
42
+            function($app, $request) {
43 43
                 $request->setMobileResolver($this->getMobileResolver());
44 44
             }
45 45
         );
@@ -54,25 +54,25 @@  discard block
 block discarded – undo
54 54
     {
55 55
         Blade::directive(
56 56
             'mobileonly',
57
-            function ($expression) {
57
+            function($expression) {
58 58
                 return "<?php if(app('request')->isMobile()) { ?>";
59 59
             }
60 60
         );
61 61
         Blade::directive(
62 62
             'endmobileonly',
63
-            function ($expression) {
63
+            function($expression) {
64 64
                 return "<?php } ?>";
65 65
             }
66 66
         );
67 67
         Blade::directive(
68 68
             'desktoponly',
69
-            function ($expression) {
69
+            function($expression) {
70 70
                 return "<?php if(!app('request')->isMobile()) { ?>";
71 71
             }
72 72
         );
73 73
         Blade::directive(
74 74
             'enddesktoponly',
75
-            function ($expression) {
75
+            function($expression) {
76 76
                 return "<?php } ?>";
77 77
             }
78 78
         );
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
 
81 81
     protected function getMobileResolver()
82 82
     {
83
-        return function (Request $request, $byUserAgent = false) {
83
+        return function(Request $request, $byUserAgent = false) {
84 84
             $app = $this->app;
85 85
             if ($byUserAgent === false) {
86 86
                 $isMobile = $request->get('_m', null);
Please login to merge, or discard this patch.
core/tests/Frontend/PackageTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     public function testRegister()
24 24
     {
25 25
         $p = new Package('mypackage');
26
-        $p->register(function($handler){
26
+        $p->register(function($handler) {
27 27
         });
28 28
 
29 29
         $packages = Package::packages();
Please login to merge, or discard this patch.
core/tests/Storage/RoundRobinDistributorTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 
33 33
         $conn->shouldReceive('table')->once()->andReturn($conn);
34 34
         $conn->shouldReceive('orderBy')->once()->with('createdAt', 'desc')->andReturn($conn);
35
-        $conn->shouldReceive('first')->once()->withNoArgs()->andReturn((object)[
35
+        $conn->shouldReceive('first')->once()->withNoArgs()->andReturn((object) [
36 36
             'disk' => 's3'
37 37
         ]);
38 38
 
Please login to merge, or discard this patch.
core/tests/Storage/UrlMakerTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
         $instance->shouldReceive('getUrl')->once()->with($mockFile)->andReturnNull();
24 24
         $instance->shouldReceive('route')->once()->with($mockFile)->andReturn('/url/path');
25 25
 
26
-        $closure = function ($file, &$url) {
26
+        $closure = function($file, &$url) {
27 27
             $url .= '/1';
28 28
         };
29 29
 
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
         $mockFile->id = 1;
42 42
 
43 43
         $urlGenerator->shouldReceive('route')->once()
44
-            ->with(m::on(function () { return true; }), ['id' => 1])
44
+            ->with(m::on(function() { return true; }), ['id' => 1])
45 45
             ->andReturn();
46 46
 
47 47
         $instance->route($mockFile);
Please login to merge, or discard this patch.
core/tests/Media/VideoHandlerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
         $instance->shouldReceive('createModel')->once()->with($mockFile)->andReturn($mockVideo);
94 94
         $instance->shouldReceive('extractInformation')->once()->with($mockVideo)->andReturn([
95 95
             ['streams' => true],
96
-            ['var1' => 'val1', 'var2' => 'val2' ],
96
+            ['var1' => 'val1', 'var2' => 'val2'],
97 97
             30,
98 98
             123456
99 99
         ]);
Please login to merge, or discard this patch.