@@ -17,7 +17,7 @@ |
||
17 | 17 | $list = new EntityCollection(); |
18 | 18 | |
19 | 19 | if (!empty($data['list'])) { |
20 | - array_map(function ($item) use ($list) { |
|
20 | + array_map(function($item) use ($list) { |
|
21 | 21 | $list->push(ResponseDtoBuilder::make(InstrumentInfoResponseItem::class, $item)); |
22 | 22 | }, $data['list']); |
23 | 23 | } |
@@ -23,7 +23,7 @@ |
||
23 | 23 | $list = new EntityCollection(); |
24 | 24 | |
25 | 25 | if (!empty($data['list'])) { |
26 | - array_map(function ($item) use ($list) { |
|
26 | + array_map(function($item) use ($list) { |
|
27 | 27 | $list->push(ResponseDtoBuilder::make(RiskLimitsResponseItem::class, $item)); |
28 | 28 | }, $data['list']); |
29 | 29 | } |