| 1 | <?php |
||
| 16 | trait RdataTrait |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * Get the string representation of the Rdata type. |
||
| 20 | * |
||
| 21 | * @return string Rdata type, e.g. "A", "MX", "NS", etc. |
||
| 22 | */ |
||
| 23 | 47 | public function getType(): string |
|
| 28 | |||
| 29 | /** |
||
| 30 | * Get the integer type code of the Rdata type as defined by IANA. |
||
| 31 | * |
||
| 32 | * @return int IANA Rdata type code |
||
| 33 | */ |
||
| 34 | 17 | public function getTypeCode(): int |
|
| 39 | } |
||
| 40 |