Skip to content

Commit a5f2deb

Browse files
committed
Making first choice the default
1 parent 2282712 commit a5f2deb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Command/UpdateRecipesCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -384,12 +384,12 @@ private function askForPackage(IOInterface $io, Lock $symfonyLock): ?string
384384
return null;
385385
}
386386

387-
$question = 'Which outdated recipe would you like to update?';
387+
$question = 'Which outdated recipe would you like to update? (default: <info>0</info>)';
388388

389389
$choice = $io->select(
390390
$question,
391391
$outdatedRecipes,
392-
null
392+
0
393393
);
394394

395395
return $outdatedRecipes[$choice];

0 commit comments

Comments
 (0)