summaryrefslogtreecommitdiff
path: root/src/Types/UserRegistrationKind.php
blob: 23dee2f305d93e21c583df69cf5c01e8475fa139 (plain)
1
2
3
4
5
6
7
8
9
<?php

namespace App\Types;

enum UserRegistrationKind: string
{
  case USER = "user";
  case GUEST = "guest";
}