Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
37 | public function __construct(array $data) |
||
38 | { |
||
39 | $this->distance = $data['distance'] ?? null; |
||
40 | $this->trafficTime = $data['trafficTime'] ?? null; |
||
41 | $this->baseTime = $data['baseTime'] ?? null; |
||
42 | $this->travelTime = $data['travelTime'] ?? null; |
||
43 | $this->text = $data['text'] ?? null; |
||
44 | $this->flags = $data['flags'] ?? []; |
||
45 | } |
||
106 | } |