mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-29 16:15:04 +00:00
16 lines
378 B
PHP
16 lines
378 B
PHP
<?php
|
|
|
|
namespace App\Config;
|
|
|
|
/**
|
|
* @see https://www.iana.org/assignments/rdap-json-values/rdap-json-values.xhtml
|
|
*/
|
|
enum DomainVariantRelation: string
|
|
{
|
|
case Registered = 'registered';
|
|
case Unregistered = 'unregistered';
|
|
case RegistrationRestricted = 'registration restricted';
|
|
case OpenRegistration = 'open registration';
|
|
case Conjoined = 'conjoined';
|
|
}
|