8000 Web server bundle by fabpot · Pull Request #21039 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

Web server bundle #21039

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Jan 6, 2017
Prev Previous commit
[WebServerBundle] switched auto-run of server:start to off by default
  • Loading branch information
fabpot committed Jan 5, 2017
commit f39b32735b5756a9a7beee55d9a455d87da9f27b
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
'You can either install it or use the "server:run" command instead.',
));

if ($io->ask('Do you want to execute <info>server:run</info> immediately? [Yn] ', true)) {
if ($io->ask('Do you want to execute <info>server:run</info> immediately? [yN] ', false)) {
return $this->getApplication()->find('server:run')->run($input, $cliOutput);
}

Expand Down
0