We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c94527d + 3cb1a4c commit a05dd38Copy full SHA for a05dd38
src/LaravelIpMiddlewareServiceProvider.php
@@ -16,7 +16,7 @@ public function boot(): void
16
{
17
if ($this->app->runningInConsole()) {
18
$this->publishes([
19
- __DIR__.'/../config/config.php' => config_path('ip-middleware.php'),
+ __DIR__ . '/../config/config.php' => config_path('ip-middleware.php'),
20
], 'config');
21
}
22
@@ -26,6 +26,6 @@ public function boot(): void
26
*/
27
public function register(): void
28
29
- $this->mergeConfigFrom(__DIR__.'/../config/config.php', 'ip-middleware');
+ $this->mergeConfigFrom(__DIR__ . '/../config/config.php', 'ip-middleware');
30
31
0 commit comments