Esempio n. 1
0
 /**
  * Adds a command object.
  *
  * If a command with the same name already exists, it will be overridden.
  *
  * @param AbstractCommand $command A Command object
  */
 public function command(AbstractCommand $command)
 {
     $command->setContainer($this);
     $this['console']->add($command);
 }