| 1 | <?php |
||
| 20 | abstract class MailObject extends DomainObject |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * Delete the object. |
||
| 24 | * |
||
| 25 | * @param string $command Command to execute |
||
| 26 | * @param string $paramName Parameter name for the delete command |
||
| 27 | */ |
||
| 28 | protected function invokeDelete($command, $paramName) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Returns the full email address for this forwarder. |
||
| 35 | * |
||
| 36 | * @return string |
||
| 37 | */ |
||
| 38 | public function getEmailAddress() |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Returns the domain-agnostic part before the @ in the forwarder. |
||
| 45 | * |
||
| 46 | * @return string |
||
| 47 | */ |
||
| 48 | public function getPrefix() |
||
| 52 | } |
||
| 53 |