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