| 1 | <?php |
||
| 8 | class Future extends InfoCommand |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Set domain name for future (option) |
||
| 12 | * |
||
| 13 | * @param string $domain Domain Name |
||
| 14 | * |
||
| 15 | * @throws Exception on incorrect domain name |
||
| 16 | */ |
||
| 17 | public function setFuture($domain) |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Set requested future AuthInfo |
||
| 28 | * |
||
| 29 | * @param string $pw AuthInfo for future |
||
| 30 | * @param string $roid if specified, this is ContactId of registrant and autinfo is of registrant |
||
| 31 | */ |
||
| 32 | public function setAuthInfo($pw, $roid = null) |
||
| 40 | } |
||
| 41 | |||
| 42 |