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