1
0
mirror of https://github.com/delight-im/PHP-Auth.git synced 2025-08-05 07:37:25 +02:00

Let class 'Auth' extend abstract class 'UserManager'

This commit is contained in:
Marco
2017-02-21 08:00:26 +01:00
parent a7d640154c
commit 5585623e08

View File

@@ -19,7 +19,7 @@ require __DIR__.'/Base64.php';
require __DIR__.'/Exceptions.php';
/** Base class that provides all methods, properties and utilities for secure authentication */
class Auth {
class Auth extends UserManager {
const SESSION_FIELD_LOGGED_IN = 'auth_logged_in';
const SESSION_FIELD_USER_ID = 'auth_user_id';