Test Failed
Push — master ( 1fab6c...a74bfc )
by Vladislav
17:54 queued 15:22
created
Derivatives/MarketData/InstrumentInfo/Response/InstrumentInfoResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
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
         }
Please login to merge, or discard this patch.
src/Derivatives/MarketData/RiskLimit/Response/RiskLimitsResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
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
         }
Please login to merge, or discard this patch.