1 | <?php |
||
17 | class TXT implements RdataInterface |
||
18 | { |
||
19 | use RdataTrait; |
||
20 | |||
21 | const TYPE = 'TXT'; |
||
22 | |||
23 | /** |
||
24 | * @var string|null |
||
25 | */ |
||
26 | private $text; |
||
27 | |||
28 | /** |
||
29 | * @param string|null $text |
||
30 | */ |
||
31 | 14 | public function setText(?string $text): void |
|
41 | |||
42 | /** |
||
43 | * @return string|null |
||
44 | */ |
||
45 | 2 | public function getText(): ?string |
|
49 | |||
50 | /** |
||
51 | * {@inheritdoc} |
||
52 | */ |
||
53 | 4 | public function output(): string |
|
57 | } |
||
58 |