Пример #1
0
 /**
  * Close the given virtual commandline.
  */
 public function close()
 {
     $args = array('console_id' => $this->id, 'action' => 'close');
     return VCLIManager::send($args);
 }
Пример #2
0
 /**
  * Shutdown and quit all VirtualCLI objects and removes the vcli native binary from memory.
  */
 static function shutdown()
 {
     $args = array('action' => 'quit');
     VCLIManager::send($args);
 }