/**
  * Execute the command
  */
 public function exec()
 {
     $schema = true;
     //
     $bundle = $this->argument("bundle");
     $data = $this->splite(BundleCommand::ListAll($bundle));
     //
     $this->show($data);
 }
 /**
  * Execute the command
  */
 public function exec()
 {
     $file = $this->argument("file");
     $bundle = $this->argument("bundle");
     $command = $this->option("command");
     //
     $process = BundleCommand::create($file, $bundle, $command);
     //
     $this->show($process);
 }