From e47b28ed1fe6dab9e086a4c1006bcbb3412678b7 Mon Sep 17 00:00:00 2001 From: Jhonny B Date: Wed, 24 Nov 2021 23:31:36 -0400 Subject: [PATCH] Returning XMbx value from methods --- php-binance-api.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/php-binance-api.php b/php-binance-api.php index eb7a6986..5c9b2e34 100755 --- a/php-binance-api.php +++ b/php-binance-api.php @@ -2829,12 +2829,12 @@ protected function setXMbxUsedWeight1m(int $usedWeight1m) : void public function getXMbxUsedWeight() : int { - $this->xMbxUsedWeight; + return $this->xMbxUsedWeight; } public function getXMbxUsedWeight1m() : int { - $this->xMbxUsedWeight1m; + return $this->xMbxUsedWeight1m; } private function getRestEndpoint() : string