mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-29 16:15:04 +00:00
feat: add enum
This commit is contained in:
18
src/Config/DomainRole.php
Normal file
18
src/Config/DomainRole.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace App\Config;
|
||||
|
||||
enum DomainRole: string
|
||||
{
|
||||
case Registrant = 'registrant';
|
||||
case Technical = 'technical';
|
||||
case Administrative = 'administrative';
|
||||
case Abuse = 'abuse';
|
||||
case Billing = 'billing';
|
||||
case Registrar = 'registrar';
|
||||
case Reseller = 'reseller';
|
||||
case Sponsor = 'sponsor';
|
||||
case Proxy = 'proxy';
|
||||
case Notifications = 'notifications';
|
||||
case Noc = 'noc';
|
||||
}
|
||||
Reference in New Issue
Block a user