Contao\CoreBundle\Command\AutomatorCommand::runAutomator PHP Method

runAutomator() private method

Runs the Automator.
private runAutomator ( Symfony\Component\Console\Input\InputInterface $input, Symfony\Component\Console\Output\OutputInterface $output )
$input Symfony\Component\Console\Input\InputInterface
$output Symfony\Component\Console\Output\OutputInterface
    private function runAutomator(InputInterface $input, OutputInterface $output)
    {
        $task = $this->getTaskFromInput($input, $output);
        $automator = new Automator();
        $automator->{$task}();
    }