1 | <?php |
||
17 | class Email { |
||
18 | |||
19 | /** |
||
20 | * @var string |
||
21 | */ |
||
22 | private $type; |
||
23 | |||
24 | /** |
||
25 | * @var string |
||
26 | */ |
||
27 | private $emailaddress; |
||
28 | |||
29 | /** |
||
30 | * @param string $type |
||
31 | * @param string $emailaddress |
||
32 | */ |
||
33 | public function __construct( $type, $emailaddress ) { |
||
37 | |||
38 | /** |
||
39 | * Creates the vCard output for a single email item. |
||
40 | */ |
||
41 | public function text() { |
||
49 | |||
50 | } |