From da1b6b77963b0bdf1073f9a970dad84429da4580 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Preu=C3=9F?= Date: Wed, 16 Oct 2019 16:16:59 +0200 Subject: [PATCH] Fix Directory Path --- .../Providers/BitinflowAccountsServiceProvider.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/GhostZero/BitinflowAccounts/Providers/BitinflowAccountsServiceProvider.php b/src/GhostZero/BitinflowAccounts/Providers/BitinflowAccountsServiceProvider.php index e147732..af6431a 100644 --- a/src/GhostZero/BitinflowAccounts/Providers/BitinflowAccountsServiceProvider.php +++ b/src/GhostZero/BitinflowAccounts/Providers/BitinflowAccountsServiceProvider.php @@ -17,7 +17,7 @@ class BitinflowAccountsServiceProvider extends ServiceProvider public function boot() { $this->publishes([ - dirname(__DIR__) . '/../config/bitinflow-accounts-api.php' => config_path('bitinflow-accounts-api.php'), + dirname(__DIR__) . '/../../../config/bitinflow-accounts-api.php' => config_path('bitinflow-accounts-api.php'), ], 'config'); } @@ -28,7 +28,7 @@ class BitinflowAccountsServiceProvider extends ServiceProvider public function register() { $this->mergeConfigFrom( - dirname(__DIR__) . '/../config/bitinflow-accounts-api.php', 'bitinflow-accounts-api' + dirname(__DIR__) . '/../../../config/bitinflow-accounts-api.php', 'bitinflow-accounts-api' ); $this->app->singleton(BitinflowAccounts::class, function () { return new BitinflowAccounts; @@ -43,4 +43,4 @@ class BitinflowAccountsServiceProvider extends ServiceProvider { return [BitinflowAccounts::class]; } -} \ No newline at end of file +}