mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-29 16:15:04 +00:00
13 lines
289 B
PHP
13 lines
289 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Config;
|
||
|
|
|
||
|
|
enum DomainVariantRelation: string
|
||
|
|
{
|
||
|
|
case Registered = 'registered';
|
||
|
|
case Unregistered = 'unregistered';
|
||
|
|
case RegistrationRestricted = 'registration restricted';
|
||
|
|
case OpenRegistration = 'open registration';
|
||
|
|
case Conjoined = 'conjoined';
|
||
|
|
}
|