Added AuthenticationSource abstract class

This commit is contained in:
Netkas 2022-05-05 17:54:36 +01:00
parent ac807271a5
commit 31dcbbd211

View file

@ -0,0 +1,12 @@
<?php
namespace ncc\Abstracts;
abstract class AuthenticationSource
{
const None = 'NONE';
const ServerProvided = 'SERVER_PROVIDED';
const UserProvided = 'USER_PROVIDED';
}