From 82a0ac77f429afb9ab23db262f6ebd2fe34e8bc7 Mon Sep 17 00:00:00 2001 From: mahdimsr <32928013+mahdimsr@users.noreply.github.com> Date: Sun, 23 Nov 2025 12:16:16 +0000 Subject: [PATCH] Fix styling --- src/Requests/GetTradingPairsRequestContract.php | 4 +--- tests/GetTradingPairsTest.php | 1 - 2 files changed, 1 insertion(+), 4 deletions(-) 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); }); -