We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b9b92a commit e4feee6Copy full SHA for e4feee6
app/Console/Commands/Environment/AppSettingsCommand.php
@@ -138,9 +138,9 @@ public function handle()
138
);
139
140
if ($this->option('disable-settings-ui')) {
141
- $this->variables['APP_ENVIRONMENT_ONLY'] = true;
+ $this->variables['APP_ENVIRONMENT_ONLY'] = 'true';
142
} else {
143
- $this->variables['APP_ENVIRONMENT_ONLY'] = ! $this->confirm(trans('command/messages.environment.app.settings'), true);
+ $this->variables['APP_ENVIRONMENT_ONLY'] = $this->confirm(trans('command/messages.environment.app.settings'), true) ? 'false' : 'true';
144
}
145
146
$this->checkForRedis();
0 commit comments