You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Console/NewCommand.php
+8-4Lines changed: 8 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -56,14 +56,15 @@ protected function execute(InputInterface $input, OutputInterface $output): int
56
56
if($installWordPress) {
57
57
$dbName = $input->getOption('dbname') ?? (newSymfonyStyle($input, $output))->ask('What is the name of your database?', str_replace('-', '_', $folder));
58
58
$dbUser = $input->getOption('dbuser') ?? (newSymfonyStyle($input, $output))->ask('What is the user of your database?', 'root');
59
-
$dbPass = $input->getOption('dbpass') ?? (newSymfonyStyle($input, $output))->ask('What is the password of your database?', 'root');
59
+
$dbPass = $input->getOption('dbpass') ?? (newSymfonyStyle($input, $output))->ask('What is the password of your database?');
60
60
$dbHost = $input->getOption('dbhost') ?? (newSymfonyStyle($input, $output))->ask('What is the host of your database?', 'localhost');
0 commit comments