Monorepo\Command\BuildCommand::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)
    {
        $noDevMode = (bool) $input->getOption('no-dev');
        $optimize = (bool) $input->getOption('optimize-autoloader');
        $build = new Build(new ConsoleIO($input, $output, $this->getHelperSet()));
        $build->build(getcwd(), $optimize, $noDevMode);
    }