Skip to content

Commit f85177b

Browse files
author
Yoke DV9
committed
fix Config path
1 parent b9c09d7 commit f85177b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Providers/DBEncryptionServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function boot()
3030
if ($this->app->runningInConsole()) {
3131

3232
$this->publishes([
33-
__DIR__.'/../config/config.php' => config_path('laravelDatabaseEncryption.php'),
33+
__DIR__.'/../Config/config.php' => config_path('laravelDatabaseEncryption.php'),
3434
], 'config');
3535

3636
$this->commands([
@@ -47,7 +47,7 @@ public function boot()
4747
*/
4848
public function register()
4949
{
50-
$this->mergeConfigFrom(__DIR__.'/../config/config.php', 'laravelDatabaseEncryption');
50+
$this->mergeConfigFrom(__DIR__.'/../Config/config.php', 'laravelDatabaseEncryption');
5151
}
5252

5353

0 commit comments

Comments
 (0)