Magestead\Helper\Options::setPhp PHP Method

setPhp() protected method

protected setPhp ( $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 setPhp($helper, InputInterface $input, OutputInterface $output)
    {
        $phpVerQuestion = new ChoiceQuestion("Which version of PHP should be installed?", ['56', '70'], 0);
        $this->_phpVer = $helper->ask($input, $output, $phpVerQuestion);
    }