Passed
Push — master ( 3e99b0...1fa2df )
by Vladislav
04:12 queued 01:58
created
src/tests/MarketData/IndexPriceKlineTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
         $this->assertNotEmpty($indexPriceKlineData->getBody()->count());
23 23
 
24 24
         /** @var IndexPriceKlineResponse $klineItem */
25
-        while(!empty($klineItem = $indexPriceKlineData->getBody()->fetch())) {
25
+        while (!empty($klineItem = $indexPriceKlineData->getBody()->fetch())) {
26 26
             $this->assertInstanceOf(IndexPriceKlineResponse::class, $klineItem);
27 27
             $this->assertInstanceOf(\DateTime::class, $klineItem->getStart());
28 28
             $this->assertIsFloat($klineItem->getOpen());
Please login to merge, or discard this patch.
src/tests/MarketData/FundingRateHistoryTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
         $this->assertNotEmpty($fundingRateHistoryData->getBody()->count());
23 23
 
24 24
         /** @var FundingRateHistoryResponse $historyItem */
25
-        while(!empty($historyItem = $fundingRateHistoryData->getBody()->fetch())) {
25
+        while (!empty($historyItem = $fundingRateHistoryData->getBody()->fetch())) {
26 26
             $this->assertInstanceOf(FundingRateHistoryResponse::class, $historyItem);
27 27
             $this->assertIsString($historyItem->getSymbol());
28 28
             $this->assertIsFloat($historyItem->getFundingRate());
Please login to merge, or discard this patch.