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.
Test Setup Failed
Push — master ( c5ade0...e039e4 )
by Gabriel
05:51
created
src/Router/RouterServiceProvider.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
      */
43 43
     protected function registerUrlGenerator()
44 44
     {
45
-        $this->getContainer()->share('url', function () {
45
+        $this->getContainer()->share('url', function() {
46 46
             $routes = app('router')->getRoutes();
47 47
 
48 48
             // The URL generator needs the route collection that exists on the router.
Please login to merge, or discard this patch.
src/Inflector/InflectorServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      */
16 16
     public function register()
17 17
     {
18
-        $this->getContainer()->share('inflector', function () {
18
+        $this->getContainer()->share('inflector', function() {
19 19
             $inflector = new Inflector();
20 20
             $path = app('path.storage') . DIRECTORY_SEPARATOR . 'cache';
21 21
             $inflector->setCachePath($path);
Please login to merge, or discard this patch.
src/I18n/TranslatorServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
      */
39 39
     protected function registerLoader()
40 40
     {
41
-        $this->getContainer()->share('translation.loader', function () {
41
+        $this->getContainer()->share('translation.loader', function() {
42 42
             $backend = new File();
43 43
             $languages = config('app.locale.enabled');
44 44
             $languages = is_array($languages) ? $languages : explode(',', $languages);
Please login to merge, or discard this patch.
src/Logger/LoggerServiceManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
      */
20 20
     public function register()
21 21
     {
22
-        $this->getContainer()->share('log', function () {
22
+        $this->getContainer()->share('log', function() {
23 23
             return $this->createLogger();
24 24
         });
25 25
 
Please login to merge, or discard this patch.
src/DebugBar/DebugBarServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
     {
31 31
         $this->getContainer()->alias(StandardDebugBar::class, DebugBar::class);
32 32
 
33
-        $this->getContainer()->share('debugbar', function () {
33
+        $this->getContainer()->share('debugbar', function() {
34 34
             $debugbar = $this->getContainer()->get(DebugBar::class);
35 35
             return $debugbar;
36 36
         });
Please login to merge, or discard this patch.
src/Http/Request/Traits/InteractsWithUri.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
      */
47 47
     protected function prepareRequestUri()
48 48
     {
49
-        if ((int)$this->server->get('REDIRECT_STATUS', '200') >= 400 && $this->server->has('REDIRECT_URL')) {
49
+        if ((int) $this->server->get('REDIRECT_STATUS', '200') >= 400 && $this->server->has('REDIRECT_URL')) {
50 50
             $requestUri = $this->server->get('REDIRECT_URL');
51 51
             $schemeAndHttpHost = $this->getSchemeAndHttpHost();
52 52
             if (strpos($requestUri, $schemeAndHttpHost) === 0) {
Please login to merge, or discard this patch.
src/Http/Request/Traits/InteractsWithMca.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
      */
69 69
     public function setActionKey($key)
70 70
     {
71
-        $this->actionKey = (string)$key;
71
+        $this->actionKey = (string) $key;
72 72
 
73 73
         return $this;
74 74
     }
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
      */
121 121
     public function setModuleKey($key)
122 122
     {
123
-        $this->moduleKey = (string)$key;
123
+        $this->moduleKey = (string) $key;
124 124
 
125 125
         return $this;
126 126
     }
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
      */
162 162
     public function setControllerKey($key)
163 163
     {
164
-        $this->controllerKey = (string)$key;
164
+        $this->controllerKey = (string) $key;
165 165
 
166 166
         return $this;
167 167
     }
Please login to merge, or discard this patch.
src/Mvc/MvcServiceProvider.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
 
24 24
     protected function registerModules()
25 25
     {
26
-        $this->getContainer()->share('mvc.modules', function () {
26
+        $this->getContainer()->share('mvc.modules', function() {
27 27
             return $this->createModulesProvider();
28 28
         });
29 29
     }
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
 
40 40
     protected function registerSections()
41 41
     {
42
-        $this->getContainer()->share('mvc.sections', function () {
42
+        $this->getContainer()->share('mvc.sections', function() {
43 43
             return $this->createSectionsManager();
44 44
         });
45 45
     }
Please login to merge, or discard this patch.