/**
  * Returns the current status of the server.
  * @param bool $multicall
  * @return Structures\Status
  */
 function getStatus($multicall = false)
 {
     if ($multicall) {
         return $this->execute(ucfirst(__FUNCTION__), array(), $this->structHandler('Status'));
     }
     return Structures\Status::fromArray($this->execute(ucfirst(__FUNCTION__)));
 }
Ejemplo n.º 2
0
 /**
  * Returns the current status of the server.
  * @return Structures\Status
  */
 function getStatus()
 {
     return Structures\Status::fromArray($this->execute(ucfirst(__FUNCTION__)));
 }