8000 bug #24881 [WebserverBundle] fixed the bug that caused that the webse… · symfony/symfony@ead2a1a · GitHub
[go: up one dir, main page]

Skip to content

Commit ead2a1a

Browse files
committed
bug #24881 [WebserverBundle] fixed the bug that caused that the webserver would … (Serkan Yildiz)
This PR was squashed before being merged into the 3.3 branch (closes #24881). Discussion ---------- [WebserverBundle] fixed the bug that caused that the webserver would … Fixed the bug that caused that the webserver would start anyway even you said N. | Q | A | ------------- | --- | Branch? | 3.3 | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | #24879 | License | MIT | Doc PR | / Commits ------- c256782 [WebserverBundle] fixed the bug that caused that the webserver would …
2 parents 7bcb90f + c256782 commit ead2a1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bundle/WebServerBundle/Command/ServerStartCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
9393
'You can either install it or use the "server:run" command instead.',
9494
));
9595

96-
if ($io->ask('Do you want to execute <info>server:run</info> immediately? [yN] ', false)) {
96+
if ($io->confirm('Do you want to execute <info>server:run</info> immediately?', false)) {
9797
return $this->getApplication()->find('server:run')->run($input, $output);
9898
}
9999

0 commit comments

Comments
 (0)
0