| 1 | <?php |
||
| 10 | class Future extends UpdateCommand |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Set domain name for future (option) |
||
| 14 | * |
||
| 15 | * @param string $domain Domain Name |
||
| 16 | * |
||
| 17 | * @throws Exception on incorrect domain name |
||
| 18 | */ |
||
| 19 | public function setFuture($domain) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Change registrant contact id of Future object |
||
| 29 | * |
||
| 30 | * @param string $registrant ContactID of registrant |
||
| 31 | */ |
||
| 32 | public function changeRegistrant($registrant) |
||
| 36 | |||
| 37 | /** |
||
| 38 | * Change future AuthInfo, generate if passed null |
||
| 39 | * |
||
| 40 | * @param string $pw AuthInfo code |
||
| 41 | * |
||
| 42 | * @return string AuthInfo code |
||
| 43 | */ |
||
| 44 | public function changeAuthInfo($pw = null) |
||
| 54 | } |
||
| 55 |