Test Failed
Pull Request — master (#20)
by Vladislav
02:36
created
Derivatives/Contract/Position/MyPosition/Response/MyPositionResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
         $list = new EntityCollection();
28 28
 
29 29
         if (!empty($data['list'])) {
30
-            array_map(function ($item) use ($list) {
30
+            array_map(function($item) use ($list) {
31 31
                 $list->push(ResponseDtoBuilder::make(MyPositionResponseItem::class, $item));
32 32
             }, $data['list']);
33 33
         }
Please login to merge, or discard this patch.
MarketData/FundingRateHistory/Response/FundingRateHistoryResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
         $list = new EntityCollection();
21 21
 
22 22
         if (!empty($data['list'])) {
23
-            array_map(function ($item) use ($list) {
23
+            array_map(function($item) use ($list) {
24 24
                 $list->push(ResponseDtoBuilder::make(FundingRateHistoryResponseItem::class, $item));
25 25
             }, $data['list']);
26 26
         }
Please login to merge, or discard this patch.