docs: add a link to the IANA documentation

This commit is contained in:
Maël Gangloff 2024-07-11 13:18:29 +02:00
parent f6bd04ba17
commit 6c2f461717
No known key found for this signature in database
GPG Key ID: 11FDC81C24A7F629
4 changed files with 12 additions and 0 deletions

View File

@ -2,6 +2,9 @@
namespace App\Config; namespace App\Config;
/**
* @see https://www.iana.org/assignments/rdap-json-values/rdap-json-values.xhtml
*/
enum DomainRole: string enum DomainRole: string
{ {
case Registrant = 'registrant'; case Registrant = 'registrant';

View File

@ -2,6 +2,9 @@
namespace App\Config; namespace App\Config;
/**
* @see https://www.iana.org/assignments/rdap-json-values/rdap-json-values.xhtml
*/
enum DomainStatus: string enum DomainStatus: string
{ {
case Validated = 'validated'; case Validated = 'validated';

View File

@ -2,6 +2,9 @@
namespace App\Config; namespace App\Config;
/**
* @see https://www.iana.org/assignments/rdap-json-values/rdap-json-values.xhtml
*/
enum DomainVariantRelation: string enum DomainVariantRelation: string
{ {
case Registered = 'registered'; case Registered = 'registered';

View File

@ -2,6 +2,9 @@
namespace App\Config; namespace App\Config;
/**
* @see https://www.iana.org/assignments/rdap-json-values/rdap-json-values.xhtml
*/
enum EventAction: string enum EventAction: string
{ {
case Registration = 'registration'; case Registration = 'registration';