From 93daf5f7979a4c5125d4b1ac79573a29861e8ae0 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Tue, 26 Jul 2022 20:04:34 +0200 Subject: [PATCH] app/library/Auth.php: Change Phalcon\Mvc\User\Component to Phalcon\Di\Injectable --- app/library/Auth.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/library/Auth.php b/app/library/Auth.php index ade7a70..7c837d0 100644 --- a/app/library/Auth.php +++ b/app/library/Auth.php @@ -5,9 +5,9 @@ namespace Httpcb; use App\Model\Data\User, Httpcb\OAuth\UserData\UserDataInterface, Httpcb\Auth\Result, - Phalcon\Mvc\User\Component; + Phalcon\Di\Injectable; -class Auth extends Component +class Auth extends Injectable { const SESSION_KEY = 'auth';