| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 8 | 
| Code Lines | 6 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 18 | public function __construct(array $data)  | 
            ||
| 19 |     { | 
            ||
| 20 | $this->responseTimestamp = DateTimeHelper::makeFromTimestamp($data['t']);  | 
            ||
| 21 | $this->bestBidPrice = $data['bp'] ?? null;  | 
            ||
| 22 | $this->bidQuantity = $data['bq'] ?? null;  | 
            ||
| 23 | $this->bestAskPrice = $data['ap'] ?? null;  | 
            ||
| 24 | $this->askQuantity = $data['aq'] ?? null;  | 
            ||
| 25 | $this->symbol = $data['s'];  | 
            ||
| 26 | }  | 
            ||
| 76 |