| 1 | <?php |
||
| 13 | final class Address |
||
| 14 | { |
||
| 15 | use SmartObject; |
||
| 16 | |||
| 17 | /** @var string */ |
||
| 18 | private $email; |
||
| 19 | |||
| 20 | /** @var string|NULL */ |
||
| 21 | private $name; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @param string $email |
||
| 25 | * @param string|NULL $name |
||
| 26 | */ |
||
| 27 | public function __construct(string $email, ?string $name = NULL) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @return string |
||
| 35 | */ |
||
| 36 | public function getEmail(): string |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @return NULL|string |
||
| 43 | */ |
||
| 44 | public function getName(): ?string |
||
| 48 | } |
||
| 49 |