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