From b5c853388cdd14a31e073148ebbd48393e12c990 Mon Sep 17 00:00:00 2001 From: Marco Date: Tue, 21 Feb 2017 08:01:41 +0100 Subject: [PATCH] Make class 'Auth' final --- src/Auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Auth.php b/src/Auth.php index ae7e644..ec11db4 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 extends UserManager { +final class Auth extends UserManager { const SESSION_FIELD_LOGGED_IN = 'auth_logged_in'; const SESSION_FIELD_USER_ID = 'auth_user_id';