Fix styling

This commit is contained in:
mahdimsr 2025-11-23 12:16:16 +00:00 committed by github-actions[bot]
parent 5a6e9cca1d
commit 82a0ac77f4
2 changed files with 1 additions and 4 deletions

View File

@ -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;
}

View File

@ -106,4 +106,3 @@ it('can handle empty symbols parameter', function () {
expect(fn () => $api->getTradingPairs(null))
->not->toThrow(Exception::class);
});