Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
AuthenticationSourceType
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3/**
4 * Authentication source type enum
5 *
6 * This Source Code Form is subject to the terms of the Mozilla Public License,
7 * v. 2.0. If a copy of the MPL was not distributed with this file, You can
8 * obtain one at https://mozilla.org/MPL/2.0/.
9 *
10 * @package   phpMyFAQ
11 * @author    Thorsten Rinne <thorsten@phpmyfaq.de>
12 * @copyright 2023-2026 phpMyFAQ Team
13 * @license   https://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0
14 * @link      https://www.phpmyfaq.de
15 * @since     2023-09-23
16 */
17
18declare(strict_types=1);
19
20namespace phpMyFAQ\Enums;
21
22enum AuthenticationSourceType: string
23{
24    case AUTH_LOCAL = 'local';
25    case AUTH_AZURE = 'azure';
26    case AUTH_KEYCLOAK = 'keycloak';
27    case AUTH_LDAP = 'ldap';
28    case AUTH_HTTP = 'http';
29    case AUTH_SSO = 'sso';
30    case AUTH_WEB_AUTHN = 'webauthn';
31}