1 | <?php |
||
17 | class Address { |
||
18 | |||
19 | /** |
||
20 | * @var string |
||
21 | */ |
||
22 | private $type; |
||
23 | |||
24 | /** |
||
25 | * @var array |
||
26 | */ |
||
27 | private $adr = []; |
||
28 | |||
29 | /** |
||
30 | * @param string $type |
||
31 | * @param array $adr |
||
32 | */ |
||
33 | public function __construct( $type, array $adr ) { |
||
37 | |||
38 | /** |
||
39 | * @return string |
||
40 | */ |
||
41 | public function text() { |
||
67 | |||
68 | } |
||
69 |