1 | <?php |
||
31 | class Communication |
||
32 | { |
||
33 | const QUAL_WWW = "AH"; |
||
34 | |||
35 | /** |
||
36 | * @var string |
||
37 | */ |
||
38 | public $internetAddress; |
||
39 | |||
40 | /** |
||
41 | * @var string |
||
42 | */ |
||
43 | public $adressQualifier = self::QUAL_WWW; |
||
44 | |||
45 | /** |
||
46 | * Communication constructor. |
||
47 | * |
||
48 | * @param string $internetAddress |
||
49 | */ |
||
50 | 2 | public function __construct($internetAddress) |
|
54 | } |
||
55 |