From 5585623e0828b9ff4b2cd8d4ffa9dac99c35366b Mon Sep 17 00:00:00 2001 From: Marco Date: Tue, 21 Feb 2017 08:00:26 +0100 Subject: [PATCH] Let class 'Auth' extend abstract class 'UserManager' --- src/Auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Auth.php b/src/Auth.php index dfa9d3c..ae7e644 100644 --- a/src/Auth.php +++ b/src/Auth.php @@ -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';