Skip to content

Commit

Permalink
fix: update config path from helper function to app class
Browse files Browse the repository at this point in the history
  • Loading branch information
joy2362 committed Jun 28, 2024
1 parent 087cdec commit df9bad9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PhpTimeZoneServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public function boot()
{
if ($this->app->runningInConsole()) {
$this->publishes([
__DIR__.'/./config/config.php' => config_path('Timezone.php')
__DIR__.'/./config/config.php' => $this->app->configPath('Timezone.php')
], 'config');
}
}
Expand Down

0 comments on commit df9bad9

Please sign in to comment.