1
0
mirror of https://github.com/delight-im/PHP-Auth.git synced 2025-08-03 14:47:30 +02:00

Make class 'Auth' final

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

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 extends UserManager {
final class Auth extends UserManager {
const SESSION_FIELD_LOGGED_IN = 'auth_logged_in';
const SESSION_FIELD_USER_ID = 'auth_user_id';