Magestead\Helper\Options::__construct PHP Method

__construct() public method

Options constructor.
public __construct ( $helper, Symfony\Component\Console\Input\InputInterface $input, Symfony\Component\Console\Output\OutputInterface $output, $project )
$helper
$input Symfony\Component\Console\Input\InputInterface
$output Symfony\Component\Console\Output\OutputInterface
$project
    public function __construct($helper, InputInterface $input, OutputInterface $output, $project)
    {
        $this->setVagrantSettings($helper, $input, $output);
        $this->setServerConfig($helper, $input, $output);
        $this->setApplicationSettings($helper, $input, $output, $project);
        $this->setMagento2Settings($helper, $input, $output);
        $this->setVersionControlSettings($helper, $input, $output);
        $this->setVagrantBox();
    }