Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
36 | public function __construct(array $data) |
||
37 | { |
||
38 | parent::__construct($data); |
||
39 | $this->location = (array) $this->getDataProperty('location'); |
||
40 | $this->dimensions = (array) $this->getDataProperty('dimensions'); |
||
41 | |||
42 | $time_taken = $this->getDataProperty('time_taken'); |
||
43 | if ($time_taken) { |
||
44 | $this->time_taken = new DateTime($time_taken); |
||
45 | } |
||
46 | } |
||
47 | |||
78 |