1 | <?php |
||
7 | class Address implements ValueObjectInterface |
||
8 | { |
||
9 | private $street; |
||
10 | private $number; |
||
11 | private $zipcode; |
||
12 | |||
13 | public function __construct($street, $number, $zipcode) |
||
19 | |||
20 | public function getStreet() |
||
24 | |||
25 | public function getNumber() |
||
29 | |||
30 | public function getZipCode() |
||
34 | |||
35 | public function sameAs(ValueObjectInterface $other) |
||
50 | } |