Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
orkhanahmadov authored and StyleCIBot committed Sep 23, 2020
1 parent c94527d commit 3cb1a4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/LaravelIpMiddlewareServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
}
}
Expand All @@ -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');
}
}

0 comments on commit 3cb1a4c

Please sign in to comment.