Наследование: extends Symfony\Component\Console\Application
Пример #1
0
 /**
  * Boot a console application.
  *
  * @return \Symfony\Component\Console\Application
  */
 public function bootConsole()
 {
     $this->console = new ConsoleApplication('Autarky', static::VERSION);
     $this->console->setAutarkyApplication($this);
     $this->boot();
     return $this->console;
 }