From 69cafec264ec879eaec727eb490fed8396f344e2 Mon Sep 17 00:00:00 2001 From: Louis Ouellet Date: Thu, 1 Aug 2024 19:44:49 -0400 Subject: [PATCH] Corrected the name of the class to verify --- src/Router.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Router.php b/src/Router.php index 3e975a2..69fd61a 100644 --- a/src/Router.php +++ b/src/Router.php @@ -98,7 +98,7 @@ public function __construct(){ $this->Logger = new Logger('router'); // Initiate Auth if class exists - if(class_exists('Auth')) $this->Auth = new Auth(); + if(class_exists('LaswitchTech\coreAuth\Auth')) $this->Auth = new Auth(); // Initiate CSRF $this->CSRF = new CSRF();