Skip to content

Commit 356ab16

Browse files
committed
v1.2
1 parent 0c30680 commit 356ab16

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/OtpiqServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class OtpiqServiceProvider extends ServiceProvider
88
public function register()
99
{
1010
$this->mergeConfigFrom(
11-
__DIR__ . '/../../config/otpiq.php', 'otpiq'
11+
__DIR__ . '/../config/otpiq.php', 'otpiq'
1212
);
1313
$this->app->singleton(OtpiqService::class, function ($app) {
1414
return new OtpiqService(config('otpiq.api_key'), config('otpiq.base_url'));
@@ -18,7 +18,7 @@ public function register()
1818
public function boot()
1919
{
2020
$this->publishes([
21-
__DIR__ . '/config/otpiq.php' => config_path('otpiq.php'),
21+
__DIR__ . '/../config/otpiq.php' => config_path('otpiq.php'),
2222
], 'otpiq-config');
2323
}
2424
}

0 commit comments

Comments
 (0)