1 | <?php |
||
27 | trait AddressTrait { |
||
28 | |||
29 | use StringAddresseeTrait; |
||
30 | use StringCountryTrait; |
||
31 | use StringHouseNumberTrait; |
||
32 | use StringLocationTrait; |
||
33 | use StringPostalCodeTrait; |
||
34 | use StringStreetNameTrait; |
||
35 | |||
36 | /** |
||
37 | * Addressee description. |
||
38 | * |
||
39 | * @var string|null |
||
40 | */ |
||
41 | private $addresseeDescription; |
||
42 | |||
43 | /** |
||
44 | * Get the addressee description. |
||
45 | * |
||
46 | * @return string|null Returns the addressee description. |
||
47 | */ |
||
48 | public function getAddresseeDescription(): ?string { |
||
51 | |||
52 | /** |
||
53 | * Set the addressee description. |
||
54 | * |
||
55 | * @param string|null $addresseeDescription The addressee description. |
||
56 | * @return self Returns this instance. |
||
57 | */ |
||
58 | public function setAddresseeDescription(?string $addresseeDescription): self { |
||
62 | } |
||
63 |