diff --git a/src/Requests/GetTradingPairsRequestContract.php b/src/Requests/GetTradingPairsRequestContract.php index 223cd04..c5e7ac5 100644 --- a/src/Requests/GetTradingPairsRequestContract.php +++ b/src/Requests/GetTradingPairsRequestContract.php @@ -9,9 +9,7 @@ interface GetTradingPairsRequestContract /** * Get future trading pair details * - * @param string|null $symbols Trading pairs, comma-separated (e.g., "BTCUSDT,ETHUSDT,XRPUSDT") - * @return ResponseInterface + * @param string|null $symbols Trading pairs, comma-separated (e.g., "BTCUSDT,ETHUSDT,XRPUSDT") */ public function getTradingPairs(?string $symbols = null): ResponseInterface; } - diff --git a/tests/GetTradingPairsTest.php b/tests/GetTradingPairsTest.php index 4f590cc..3333694 100644 --- a/tests/GetTradingPairsTest.php +++ b/tests/GetTradingPairsTest.php @@ -106,4 +106,3 @@ it('can handle empty symbols parameter', function () { expect(fn () => $api->getTradingPairs(null)) ->not->toThrow(Exception::class); }); -