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