From 2c2255abed45589be5fd3e6f5284063400621630 Mon Sep 17 00:00:00 2001 From: Sohaib Ilyas Date: Mon, 18 Oct 2021 19:18:58 +0500 Subject: [PATCH] getXMbxUsedWeight() return null fix --- 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 a18b3697..67277f8d 100755 --- a/php-binance-api.php +++ b/php-binance-api.php @@ -2825,12 +2825,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