Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
43 | public function mapResponse(array $data = []) |
||
44 | { |
||
45 | return [ |
||
46 | 'low' => $data['lowPrice'], |
||
47 | 'high' => $data['highPrice'], |
||
48 | 'last' => $data['lastPrice'], |
||
49 | 'volume' => $data['volume'], |
||
50 | 'open' => $data['openPrice'], |
||
51 | 'bid' => $data['bidPrice'], |
||
52 | 'ask' => $data['askPrice'], |
||
53 | 'average' => $data['weightedAvgPrice'], |
||
54 | 'timestamp' => $data['closeTime'], |
||
55 | ]; |
||
56 | } |
||
57 | } |
||
58 |