Magestead\Helper\Options::setWebServer PHP Method

setWebServer() protected method

protected setWebServer ( $helper, Symfony\Component\Console\Input\InputInterface $input, Symfony\Component\Console\Output\OutputInterface $output )
$helper
$input Symfony\Component\Console\Input\InputInterface
$output Symfony\Component\Console\Output\OutputInterface
    protected function setWebServer($helper, InputInterface $input, OutputInterface $output)
    {
        $serverQuestion = new ChoiceQuestion("Which webserver would you like?", ['NGINX', 'Apache'], 0);
        $this->_server = strtolower($helper->ask($input, $output, $serverQuestion));
    }