Shopware\Install\Command\ShopwareInstallVcsCommand::execute PHP Method

execute() protected method

protected execute ( Symfony\Component\Console\Input\InputInterface $input, Symfony\Component\Console\Output\OutputInterface $output )
$input Symfony\Component\Console\Input\InputInterface
$output Symfony\Component\Console\Output\OutputInterface
    protected function execute(InputInterface $input, OutputInterface $output)
    {
        /** @var \Shopware\Install\Services\Install\Vcs $installService */
        $installService = $this->container->get('shopware_vcs_install_service');
        $installService->installShopware($input->getOption('branch'), trim($input->getOption('installDir'), '/'), $input->getOption('basePath'), $input->getOption('databaseName'), $input->getOption('user'), $input->getOption('noDemoData'));
    }