Наследование: extends BasicCommand
Пример #1
0
 /**
  * Execute the console command.
  *
  * @return bool|null
  */
 public function fire()
 {
     foreach ($this->groups as $group) {
         $this->group = $group;
         parent::fire();
     }
 }
Пример #2
0
 public function execute()
 {
     $dropCommand = $this->createCommand('LazyRecord\\Command\\DbCommand\\DropCommand');
     $dropCommand->options = $this->options;
     $dropCommand->execute();
     parent::execute();
 }