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.
Passed
Push — master ( 9e1a89...27ed08 )
by Toby
10:49
created
src/ControlDBServiceProvider.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -110,10 +110,10 @@  discard block
 block discarded – undo
110 110
      */
111 111
     protected function registerConfig()
112 112
     {
113
-        $this->publishes([__DIR__ .'/../config/control.php' => config_path('control.php'),
113
+        $this->publishes([__DIR__.'/../config/control.php' => config_path('control.php'),
114 114
         ], 'config');
115 115
         $this->mergeConfigFrom(
116
-            __DIR__ .'/../config/control.php', 'control'
116
+            __DIR__.'/../config/control.php', 'control'
117 117
         );
118 118
     }
119 119
 
@@ -125,13 +125,13 @@  discard block
 block discarded – undo
125 125
     public function registerFactories()
126 126
     {
127 127
         if (!app()->environment('production') && class_exists(\Faker\Factory::class)) {
128
-            $this->app->make(Factory::class)->load(__DIR__ .'/../database/factories');
128
+            $this->app->make(Factory::class)->load(__DIR__.'/../database/factories');
129 129
         }
130 130
     }
131 131
     
132 132
     public function registerMigrations()
133 133
     {
134
-        $this->loadMigrationsFrom(__DIR__ . '/../database/migrations');
134
+        $this->loadMigrationsFrom(__DIR__.'/../database/migrations');
135 135
     }
136 136
 
137 137
     public function bindContracts()
@@ -255,7 +255,7 @@  discard block
 block discarded – undo
255 255
         Route::prefix(config('control.api_prefix'))
256 256
             ->middleware(config('control.api_middleware'))
257 257
             ->namespace('BristolSU\ControlDB\Http\Controllers')
258
-            ->group(__DIR__ . '/../routes/api.php');
258
+            ->group(__DIR__.'/../routes/api.php');
259 259
     }
260 260
 
261 261
 
Please login to merge, or discard this patch.