| 1 | <?php |
||
| 9 | class HostClient |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Host |
||
| 13 | * @var string|null |
||
| 14 | */ |
||
| 15 | private $host; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * HostClient constructor. |
||
| 19 | * |
||
| 20 | * @param string|null $host |
||
| 21 | */ |
||
| 22 | public function __construct($host) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Export |
||
| 29 | * |
||
| 30 | * @return string|null |
||
| 31 | */ |
||
| 32 | public function export() |
||
| 36 | } |
||
| 37 |