Skip to content

Commit 2919156

Browse files
authored
Update php-binance-api.php
1 parent f5d5abf commit 2919156

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

php-binance-api.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -680,6 +680,8 @@ public function userAssetDribbletLog()
680680
}
681681

682682
/**
683+
* @deprecated
684+
*
683685
* Fetch current(daily) trade fee of symbol, values in percentage.
684686
* for more info visit binance official api document
685687
*
@@ -693,7 +695,7 @@ public function tradeFee(string $symbol)
693695
"symbol" => $symbol,
694696
"wapi" => true,
695697
];
696-
trigger_error('Function tradeFee is deprecated and will be removed from Binance on Aug 1, 2021. Please use $api->commissionFee', E_USER_NOTICE);
698+
trigger_error('Function tradeFee is deprecated and will be removed from Binance on Aug 1, 2021. Please use $api->commissionFee', E_USER_DEPRECATED);
697699

698700
return $this->httpRequest("v3/tradeFee.html", 'GET', $params, true);
699701
}

0 commit comments

Comments
 (0)