Magestead\Helper\Options::setOperatingSystem PHP Method

setOperatingSystem() protected method

protected setOperatingSystem ( $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 setOperatingSystem($helper, InputInterface $input, OutputInterface $output)
    {
        $osQuestion = new ChoiceQuestion("Which OS would you like to install?", ['CentOS 6.5', 'Ubuntu 14'], 0);
        $this->_os = str_replace(' ', '', str_replace('.', '', strtolower($helper->ask($input, $output, $osQuestion))));
    }