diff --git a/src/LaravelIpMiddlewareServiceProvider.php b/src/LaravelIpMiddlewareServiceProvider.php index b3f3a04..e6fb89d 100755 --- a/src/LaravelIpMiddlewareServiceProvider.php +++ b/src/LaravelIpMiddlewareServiceProvider.php @@ -16,7 +16,7 @@ public function boot(): void { if ($this->app->runningInConsole()) { $this->publishes([ - __DIR__.'/../config/config.php' => config_path('ip-middleware.php'), + __DIR__ . '/../config/config.php' => config_path('ip-middleware.php'), ], 'config'); } } @@ -26,6 +26,6 @@ public function boot(): void */ public function register(): void { - $this->mergeConfigFrom(__DIR__.'/../config/config.php', 'ip-middleware'); + $this->mergeConfigFrom(__DIR__ . '/../config/config.php', 'ip-middleware'); } }