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