Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
40 | public function __construct(array $data) |
||
41 | { |
||
42 | $this->distance = new Distance($data['distance'] ?? 0); |
||
43 | $this->trafficTime = new Duration($data['trafficTime'] ?? 0); |
||
44 | $this->baseTime = new Duration($data['baseTime'] ?? 0); |
||
45 | $this->travelTime = new Duration($data['travelTime'] ?? 0); |
||
46 | $this->text = $data['text'] ?? null; |
||
47 | $this->flags = $data['flags'] ?? []; |
||
48 | } |
||
98 |