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 ( 9864d5...112b48 )
by Michiel
07:42
created
src/RandomServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
     public function boot()
17 17
     {
18 18
         $this->publishes([
19
-            __DIR__ . '/config/laravel-random.php' => config_path('laravel-random.php'),
19
+            __DIR__.'/config/laravel-random.php' => config_path('laravel-random.php'),
20 20
         ]);
21 21
     }
22 22
 
@@ -27,9 +27,9 @@  discard block
 block discarded – undo
27 27
      */
28 28
     public function register()
29 29
     {
30
-        $this->mergeConfigFrom(__DIR__ . '/config/laravel-random.php', 'laravel-random');
30
+        $this->mergeConfigFrom(__DIR__.'/config/laravel-random.php', 'laravel-random');
31 31
         
32
-        $this->app->singleton('random', function ($app) {
32
+        $this->app->singleton('random', function($app) {
33 33
             $factory = new \RandomLib\Factory;
34 34
             
35 35
             $strength = $app['config']->get('laravel-random.strength');
Please login to merge, or discard this patch.