]> jfr.im git - irc/unrealircd/unrealircd-rpc-php.git/blobdiff - lib/Server.php
Make query() throw an error when the request timed out (defined as >10sec).
[irc/unrealircd/unrealircd-rpc-php.git] / lib / Server.php
index 09e0a36fa923c4bdfb383c01830a20736747033c..b1460a61b6c5185e4f28a1190793cb0429a6a32a 100644 (file)
@@ -37,9 +37,9 @@ class Server
      * @return stdClass|array|bool
      * @throws Exception
      */
-    public function get(string $nick): stdClass|array|bool
+    public function get(string $server = null): stdClass|array|bool
     {
-        $response = $this->connection->query('server.get', ['server' => $nick]);
+        $response = $this->connection->query('server.get', ['server' => $server]);
 
         if (!is_bool($response)) {
             return $response->server;