Add FirstLevelAuthentication enum for initial auth types

This commit is contained in:
netkas 2024-09-13 13:50:09 -04:00
parent c1f2cff00e
commit ee4aeecf22

View file

@ -0,0 +1,8 @@
<?php
namespace Socialbox\Enums;
enum FirstLevelAuthentication : string
{
case PASSWORD = 'PASSWORD';
}