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
Esempio n. 1
0
 public function execute()
 {
     $dropCommand = $this->createCommand('LazyRecord\\Command\\DbCommand\\DropCommand');
     $dropCommand->options = $this->options;
     $dropCommand->execute();
     parent::execute();
 }