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 ( 832f12...76243a )
by Piyapan
02:01
created
src/StarterKitServiceProvider.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -64,10 +64,10 @@  discard block
 block discarded – undo
64 64
     // Publishing the configuration file.
65 65
     echo "Publishing StarterKit Config ...\n";
66 66
     $this->publishes([
67
-      __DIR__ . '/../config/starter-kit.php' => config_path('starter-kit.php'),
67
+      __DIR__.'/../config/starter-kit.php' => config_path('starter-kit.php'),
68 68
     ], 'config');
69 69
 
70
-    $this->mergeConfigFrom(__DIR__ . '/../config/starter-kit.php', 'StarterKit');
70
+    $this->mergeConfigFrom(__DIR__.'/../config/starter-kit.php', 'StarterKit');
71 71
   }
72 72
 
73 73
   /**
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
   public function register()
79 79
   {
80 80
     // Register the service the package provides.
81
-    $this->app->singleton('StarterKit', function ($app) {
81
+    $this->app->singleton('StarterKit', function($app) {
82 82
       return new StarterKit;
83 83
     });
84 84
 
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
   }
97 97
 
98 98
   public function loadHelpers() {
99
-    foreach (glob(__DIR__ . '/Helpers/*.php') as $filename) {
99
+    foreach (glob(__DIR__.'/Helpers/*.php') as $filename) {
100 100
       require_once($filename);
101 101
     }
102 102
   }
Please login to merge, or discard this patch.