상속: use trait Acacha\Llum\Traits\GetSetable
예제 #1
0
파일: LlumCommand.php 프로젝트: acacha/llum
 /**
  * Configure the command options.
  */
 protected function configure()
 {
     $command = new ConsoleCommand();
     $command->name($this->commandName)->description($this->commandDescription);
     if ($this->argument != null) {
         $command->argument(['name' => $this->argument, 'description' => $this->argumentDescription, 'type' => $this->argumentType]);
     }
     $this->configureCommand($command);
 }