| 1 | <?php |
||
| 11 | class Address |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var string $store |
||
| 15 | */ |
||
| 16 | protected $store; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var string $name |
||
| 20 | */ |
||
| 21 | private $name; |
||
| 22 | |||
| 23 | public function __construct(string $address, string $name = '') |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @return string |
||
| 31 | */ |
||
| 32 | public function getStore(): string |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @return string |
||
| 39 | */ |
||
| 40 | public function getName(): string |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @return boolean |
||
| 47 | */ |
||
| 48 | public function isValid() |
||
| 52 | |||
| 53 | } |