/**
  * Execute the command
  */
 public function exec()
 {
     $schema = true;
     //
     $data = $this->splite(Command::ListAll());
     //
     $this->show($data);
 }
Пример #2
0
 /**
  * Execute the command
  */
 public function exec()
 {
     $file = $this->argument("file");
     $command = $this->option("command");
     //
     $process = Command::create($file, $command);
     //
     $this->show($process);
 }