| 1 | <?php |
||
| 14 | final class VenueAddress |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var string|null |
||
| 18 | */ |
||
| 19 | private $street; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var string|null |
||
| 23 | */ |
||
| 24 | private $postalCode; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var string|null |
||
| 28 | */ |
||
| 29 | private $city; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @var string|null |
||
| 33 | */ |
||
| 34 | private $country; |
||
| 35 | |||
| 36 | public function __construct(?string $street, ?string $postalCode, ?string $city, ?string $country) |
||
| 43 | |||
| 44 | public function getStreet(): ?string |
||
| 48 | |||
| 49 | public function getPostalCode(): ?string |
||
| 53 | |||
| 54 | public function getCity(): ?string |
||
| 58 | |||
| 59 | public function getCountry(): ?string |
||
| 63 | } |
||
| 64 |