@@ -27,7 +27,7 @@ |
||
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 | } |
@@ -20,7 +20,7 @@ |
||
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 | } |