1 | <?php |
||
24 | class WifiFormat extends AbstractFormat |
||
25 | { |
||
26 | /** |
||
27 | * @var string the authentication type. e.g., WPA |
||
28 | */ |
||
29 | public $authentication; |
||
30 | /** |
||
31 | * @var string the network SSID |
||
32 | */ |
||
33 | public $ssid; |
||
34 | /** |
||
35 | * @var string the wifi password |
||
36 | */ |
||
37 | public $password; |
||
38 | /** |
||
39 | * @var string hidden SSID (optional; equals false if omitted): either true or false |
||
40 | */ |
||
41 | public $hidden; |
||
42 | |||
43 | /** |
||
44 | * @throws InvalidConfigException |
||
45 | */ |
||
46 | public function init() |
||
52 | |||
53 | /** |
||
54 | * @inheritdoc |
||
55 | */ |
||
56 | public function getText() |
||
65 | } |
||
66 |