Наследование: extends Symfony\Component\Console\Command\Command
 /**
  * @param InputInterface  $input
  * @param OutputInterface $output
  *
  * @return int|null|void
  */
 protected function execute(InputInterface $input, OutputInterface $output)
 {
     $this->getApplication()->getContainer()->setParam('broadway.acts-on', str_replace('/', '\\', $input->getOption('acts-on')));
     parent::execute($input, $output);
 }