Skip to content

Commit

Permalink
align config names for publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
zerodahero committed Feb 23, 2021
1 parent a5189c9 commit 2b035da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
File renamed without changes.
6 changes: 3 additions & 3 deletions src/PreflightChecksServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class PreflightChecksServiceProvider extends ServiceProvider
public function boot()
{
$this->publishes([
__DIR__ . '/../config/preflight_checks.php' => $this->publishPath('preflight_checks.php'),
__DIR__ . '/../config/preflight.php' => $this->publishPath('preflight.php'),
]);

if ($this->app->runningInConsole()) {
Expand All @@ -29,8 +29,8 @@ public function boot()
public function register()
{
$this->mergeConfigFrom(
__DIR__ . '/../config/preflight_checks.php',
'preflight_checks'
__DIR__ . '/../config/preflight.php',
'preflight'
);
}

Expand Down

0 comments on commit 2b035da

Please sign in to comment.