From 0e5504ed3f77b61668458c507559de7f355e4dcd Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Mon, 7 May 2018 13:52:33 +0100 Subject: [PATCH] RCONInstance: add docs to fields, make 'stop' private --- src/pocketmine/network/rcon/RCONInstance.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/pocketmine/network/rcon/RCONInstance.php b/src/pocketmine/network/rcon/RCONInstance.php index 670b70df4..78dbf06e4 100644 --- a/src/pocketmine/network/rcon/RCONInstance.php +++ b/src/pocketmine/network/rcon/RCONInstance.php @@ -31,13 +31,20 @@ class RCONInstance extends Thread{ private const STATUS_AUTHENTICATING = 0; private const STATUS_CONNECTED = 1; - public $stop; + /** @var string */ public $cmd; + /** @var string */ public $response; + + /** @var bool */ + private $stop; /** @var resource */ private $socket; + /** @var string */ private $password; + /** @var int */ private $maxClients; + /** @var bool */ private $waiting; public function isWaiting(){