Ejemplo n.º 1
0
 /**
  * Execute project command
  *
  * @return string result command
  * @since 0.1.0
  */
 protected function executeCommand()
 {
     ob_start();
     $this->root->executeCommand(func_get_args());
     $result = ob_get_clean();
     ob_flush();
     return $result;
 }