printTitle($output, 'APPLICATION'); if ($appConfig->hasApp() && $this->questionHelper->ask($input, $output, new ConfirmationQuestion( 'Do you want to keep imported application config? (Y/n): ' ))) { return; } $appConfig->setApp([ 'SECRET' => $this->ask( $input, $output, 'Define a secret string that will be used to sign API tokens (leave empty to autogenerate one)', null, true ) ?: $this->generateRandomString(32), ]); } }