@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | $bidList = $this->bid; |
92 | 92 | |
93 | 93 | if (!empty($bids)) { |
94 | - array_map(function ($bid) use ($bidList) { |
|
94 | + array_map(function($bid) use ($bidList) { |
|
95 | 95 | $bidList->push(ResponseDtoBuilder::make(OrderBookPriceItemResponse::class, $bid)); |
96 | 96 | }, $bids); |
97 | 97 | } |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | $askList = $this->ask; |
113 | 113 | |
114 | 114 | if (!empty($asks)) { |
115 | - array_map(function ($ask) use ($askList) { |
|
115 | + array_map(function($ask) use ($askList) { |
|
116 | 116 | $askList->push(ResponseDtoBuilder::make(OrderBookPriceItemResponse::class, $ask)); |
117 | 117 | }, $asks); |
118 | 118 | } |
@@ -98,7 +98,7 @@ |
||
98 | 98 | */ |
99 | 99 | public function setInterval(string $interval): self |
100 | 100 | { |
101 | - $this->interval = StringHelper::clearInterval($interval) . "min"; |
|
101 | + $this->interval = StringHelper::clearInterval($interval)."min"; |
|
102 | 102 | return $this; |
103 | 103 | } |
104 | 104 |
@@ -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(GetTradingFeeRateResponseItem::class, $item)); |
25 | 25 | }, $data['list']); |
26 | 26 | } |
@@ -19,7 +19,7 @@ |
||
19 | 19 | $list = new EntityCollection(); |
20 | 20 | |
21 | 21 | if (!empty($data['list'])) { |
22 | - array_map(function ($item) use ($list) { |
|
22 | + array_map(function($item) use ($list) { |
|
23 | 23 | $list->push(ResponseDtoBuilder::make(WalletBalanceResponseItem::class, $item)); |
24 | 24 | }, $data['list']); |
25 | 25 | } |
@@ -19,7 +19,7 @@ |
||
19 | 19 | $list = new EntityCollection(); |
20 | 20 | |
21 | 21 | if (!empty($data['list'])) { |
22 | - array_map(function ($item) use ($list) { |
|
22 | + array_map(function($item) use ($list) { |
|
23 | 23 | $list->push(ResponseDtoBuilder::make(CancelAllOrderResponseItem::class, $item)); |
24 | 24 | }, $data['list']); |
25 | 25 | } |
@@ -244,8 +244,8 @@ |
||
244 | 244 | ->setLastPriceOnCreated($data['lastPriceOnCreated']) |
245 | 245 | ->setCloseOnTrigger($data['closeOnTrigger']) |
246 | 246 | ->setTpslMode($data['tpslMode']) |
247 | - ->setTpLimitPrice((float)$data['tpLimitPrice']) |
|
248 | - ->setSlLimitPrice((float)$data['slLimitPrice']) |
|
247 | + ->setTpLimitPrice((float) $data['tpLimitPrice']) |
|
248 | + ->setSlLimitPrice((float) $data['slLimitPrice']) |
|
249 | 249 | ->setSmpType($data['smpType']) |
250 | 250 | ->setSmpGroup($data['smpGroup']) |
251 | 251 | ->setSmpOrderId($data['smpOrderId']); |
@@ -34,7 +34,7 @@ |
||
34 | 34 | $list = new EntityCollection(); |
35 | 35 | |
36 | 36 | if (!empty($data['list'])) { |
37 | - array_map(function ($item) use ($list) { |
|
37 | + array_map(function($item) use ($list) { |
|
38 | 38 | $list->push(ResponseDtoBuilder::make(GetOpenOrdersResponseItem::class, $item)); |
39 | 39 | }, $data['list']); |
40 | 40 | } |
@@ -35,7 +35,7 @@ |
||
35 | 35 | $list = new EntityCollection(); |
36 | 36 | |
37 | 37 | if (!empty($data['list'])) { |
38 | - array_map(function ($item) use ($list) { |
|
38 | + array_map(function($item) use ($list) { |
|
39 | 39 | $list->push(ResponseDtoBuilder::make(GetOrderListResponseItem::class, $item)); |
40 | 40 | }, $data['list']); |
41 | 41 | } |
@@ -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(GetClosedPnLResponseItem::class, $item)); |
32 | 32 | }, $data['list']); |
33 | 33 | } |