Skip to content

Commit

Permalink
Fix bug: Change config filename (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
imanabbasi committed Feb 26, 2021
1 parent 1539199 commit c6e0bf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SmsIrPhpServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit c6e0bf2

Please sign in to comment.