| 1 | <?php |
||
| 16 | class A implements RdataInterface |
||
| 17 | { |
||
| 18 | use RdataTrait; |
||
| 19 | |||
| 20 | const TYPE = 'A'; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var string |
||
| 24 | */ |
||
| 25 | protected $address; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param string $address |
||
| 29 | */ |
||
| 30 | public function setAddress($address) |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @return string |
||
| 37 | */ |
||
| 38 | public function getAddress() |
||
| 42 | |||
| 43 | /** |
||
| 44 | * {@inheritdoc} |
||
| 45 | */ |
||
| 46 | public function output() |
||
| 50 | } |
||
| 51 |