Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
58 | public function __construct(AddressId $id, $name, $street, $zipcode, $city, Coordinate $coordinate) |
||
59 | { |
||
60 | parent::__construct($id); |
||
61 | |||
62 | $this->name = $name; |
||
63 | $this->street = $street; |
||
64 | $this->zipcode = $zipcode; |
||
65 | $this->city = $city; |
||
66 | $this->coordinate = $coordinate; |
||
67 | } |
||
68 | |||
109 |