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 Failed
Push — master ( 99e2d6...1f5955 )
by Rob
04:50
created
src/ShodanServiceProvider.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
         $this->app->alias(Shodan::class, 'shodan');
37 37
 
38 38
         $this->app->bind(
39
-            'shodan', function () {
39
+            'shodan', function() {
40 40
                 return new Shodan();
41 41
             }
42 42
         );
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      */
50 50
     public function provides()
51 51
     {
52
-        return ['shodan'];
52
+        return [ 'shodan' ];
53 53
     }
54 54
 
55 55
     /**
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
         );
68 68
 
69 69
         // Registering package commands.
70
-        $this->commands(['shodan']);
70
+        $this->commands([ 'shodan' ]);
71 71
     }
72 72
 
73 73
     /**
@@ -80,8 +80,8 @@  discard block
 block discarded – undo
80 80
      */
81 81
     protected function mergeConfigFrom($path, $key)
82 82
     {
83
-        $config = $this->app['config']->get($key, []);
84
-        $this->app['config']->set($key, $this->mergeConfig($config, include $path));
83
+        $config = $this->app[ 'config' ]->get($key, [ ]);
84
+        $this->app[ 'config' ]->set($key, $this->mergeConfig($config, include $path));
85 85
     }
86 86
 
87 87
     /**
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
             if (is_numeric($key)) {
106 106
                 continue;
107 107
             }
108
-            $array[$key] = $this->mergeConfig($value, $merging[$key]);
108
+            $array[ $key ] = $this->mergeConfig($value, $merging[ $key ]);
109 109
         }
110 110
 
111 111
         return $array;
Please login to merge, or discard this patch.