Sylius\Behat\Context\Cli\InstallerContext::iExecuteCommandWithInputChoices PHP Method

iExecuteCommandWithInputChoices() private method

    private function iExecuteCommandWithInputChoices($name)
    {
        $this->questionHelper = $this->command->getHelper('question');
        $inputString = implode(PHP_EOL, $this->inputChoices);
        $this->questionHelper->setInputStream($this->getInputStream($inputString . PHP_EOL));
        try {
            $this->tester->execute(['command' => $name]);
        } catch (\Exception $e) {
        }
    }