@@ -22,15 +22,15 @@ discard block |
||
22 | 22 | |
23 | 23 | if (function_exists('config_path')) { |
24 | 24 | $this->publishes([ |
25 | - dirname(__DIR__) . '/config/config.php' => config_path('bavix-settings.php'), |
|
25 | + dirname(__DIR__).'/config/config.php' => config_path('bavix-settings.php'), |
|
26 | 26 | ], 'laravel-settings-config'); |
27 | 27 | } |
28 | 28 | |
29 | 29 | $this->publishes([ |
30 | - dirname(__DIR__) . '/database/' => database_path('migrations'), |
|
30 | + dirname(__DIR__).'/database/' => database_path('migrations'), |
|
31 | 31 | ], 'laravel-settings-migrations'); |
32 | 32 | |
33 | - $this->loadMigrationsFrom([__DIR__ . '/../database']); |
|
33 | + $this->loadMigrationsFrom([__DIR__.'/../database']); |
|
34 | 34 | } |
35 | 35 | |
36 | 36 | /** |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | public function register(): void |
42 | 42 | { |
43 | 43 | $this->mergeConfigFrom( |
44 | - dirname(__DIR__) . '/config/config.php', |
|
44 | + dirname(__DIR__).'/config/config.php', |
|
45 | 45 | 'bavix-settings' |
46 | 46 | ); |
47 | 47 |