Added AuthenticationSource abstract class
This commit is contained in:
parent
ac807271a5
commit
31dcbbd211
1 changed files with 12 additions and 0 deletions
12
src/ncc/Abstracts/AuthenticationSource.php
Normal file
12
src/ncc/Abstracts/AuthenticationSource.php
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace ncc\Abstracts;
|
||||||
|
|
||||||
|
abstract class AuthenticationSource
|
||||||
|
{
|
||||||
|
const None = 'NONE';
|
||||||
|
|
||||||
|
const ServerProvided = 'SERVER_PROVIDED';
|
||||||
|
|
||||||
|
const UserProvided = 'USER_PROVIDED';
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue