From c6e0bf283d93548dc2eb3e125e5ca9879bbb72c0 Mon Sep 17 00:00:00 2001 From: Iman Abbasi Date: Fri, 26 Feb 2021 17:51:45 +0330 Subject: [PATCH] Fix bug: Change config filename (#18) --- src/SmsIrPhpServiceProvider.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SmsIrPhpServiceProvider.php b/src/SmsIrPhpServiceProvider.php index d835606..46f123e 100644 --- a/src/SmsIrPhpServiceProvider.php +++ b/src/SmsIrPhpServiceProvider.php @@ -11,7 +11,7 @@ public function register() $this->mergeConfigFrom(__DIR__ . '/Configs/config.php', 'smsirphp'); if ($this->app->runningInConsole()) { $this->publishes([ - __DIR__ . '/Configs/config.php' => config_path('smsitphp.php'), + __DIR__ . '/Configs/config.php' => config_path('smsirphp.php'), ], 'config'); } $this->app->bind('smsir', function ($app) {