setName('cronjob') ->setDescription('Execute daily cronjob'); } protected function execute(InputInterface $input, OutputInterface $output) { foreach ($this->commands as $command) { $job = $this->getApplication()->find($command); $job->run(new ArrayInput(array('command' => $command)), new NullOutput()); } } }