| 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 |
||
| 40 | */ |
||
| 41 | private $addresseeDescription; |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Get the addressee description. |
||
| 45 | * |
||
| 46 | * @return string Returns the addressee description. |
||
| 47 | */ |
||
| 48 | public function getAddresseeDescription() { |
||
| 51 | |||
| 52 | /** |
||
| 53 | * Set the addressee description. |
||
| 54 | * |
||
| 55 | * @param string $addresseeDescription The addressee description. |
||
| 56 | */ |
||
| 57 | public function setAddresseeDescription($addresseeDescription) { |
||
| 61 | } |
||
| 62 |