Exemplo n.º 1
0
 /**
  * Register default command.
  *
  * @return  Console  Return this object to support chaining.
  *
  * @since  1.0
  */
 public function registerRootCommand()
 {
     $this->rootCommand = new RootCommand(null, $this->input, $this->output);
     $this->rootCommand->setApplication($this)->addCommand(new HelpCommand());
     return $this;
 }