diff --git a/packages/builder/src/Commands/InstallCommand.php b/packages/builder/src/Commands/InstallCommand.php index 30c494f70..0e01d9ed3 100644 --- a/packages/builder/src/Commands/InstallCommand.php +++ b/packages/builder/src/Commands/InstallCommand.php @@ -72,10 +72,10 @@ public function welcome(): void public function publish_configuration(): void { if (confirm('Do you wish to publish the configuration?', true)) { - if(!config()->has('builder')){ + if (! config()->has('builder')) { info('Publishing Builder Configuration...'); $this->callSilent('vendor:publish', ['--tag' => 'builder-config']); - }else{ + } else { warning('The Builder config already exist. The config will not be published.'); } }