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 ( 68c60c...002a74 )
by Piyapan
03:05
created
src/StarterKitServiceProvider.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
   public function boot()
15 15
   {
16 16
     // $this->loadTranslationsFrom(__DIR__.'/../resources/lang', 'raystech');
17
-    if(config('starter-kit.route_enable', false)) {
17
+    if (config('starter-kit.route_enable', false)) {
18 18
       $this->loadRoutesFrom(__DIR__.'/Routes/web.php');
19 19
     }
20 20
     $this->loadHelpers();
@@ -66,10 +66,10 @@  discard block
 block discarded – undo
66 66
     // Publishing the configuration file.
67 67
     // echo "Publishing StarterKit Config ...\n";
68 68
     $this->publishes([
69
-      __DIR__ . '/../config/starter-kit.php' => config_path('starter-kit.php'),
69
+      __DIR__.'/../config/starter-kit.php' => config_path('starter-kit.php'),
70 70
     ], 'config');
71 71
 
72
-    $this->mergeConfigFrom(__DIR__ . '/../config/starter-kit.php', 'StarterKit');
72
+    $this->mergeConfigFrom(__DIR__.'/../config/starter-kit.php', 'StarterKit');
73 73
   }
74 74
 
75 75
   /**
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
   public function register()
81 81
   {
82 82
     // Register the service the package provides.
83
-    $this->app->singleton('StarterKit', function ($app) {
83
+    $this->app->singleton('StarterKit', function($app) {
84 84
       return new StarterKit;
85 85
     });
86 86
 
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
     );
93 93
 
94 94
     // Register Flash Toast
95
-    $this->app->singleton('flashtoast', function () {
95
+    $this->app->singleton('flashtoast', function() {
96 96
       return $this->app->make('RaysTech\StarterKit\Supports\FlashToast');
97 97
     });
98 98
   }
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
   }
109 109
 
110 110
   public function loadHelpers() {
111
-    foreach (glob(__DIR__ . '/Helpers/*.php') as $filename) {
111
+    foreach (glob(__DIR__.'/Helpers/*.php') as $filename) {
112 112
       require_once($filename);
113 113
     }
114 114
   }
Please login to merge, or discard this patch.