From 611d61d19f5bc2aa83c9d69ebacf4ab1ec30489c Mon Sep 17 00:00:00 2001 From: Brady McDonough Date: Thu, 15 Feb 2024 16:18:32 -0700 Subject: [PATCH] Incorrect namespace --- src/Factory.php | 4 ++-- src/Workflow/UserManagement.php | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/Factory.php b/src/Factory.php index 2670cd3..e756011 100644 --- a/src/Factory.php +++ b/src/Factory.php @@ -17,7 +17,6 @@ use BradyMcD\TAATP\Session\Base as Session; use BradyMcD\TAATP\Workflow\UserManagement; use BradyMcD\TAATP\Workflow\Authenticate; - /** * The primary entrypoint of the module. * @SuppressWarnings(PHPMD.ShortVariable) @@ -47,7 +46,8 @@ class Factory public function userManagement(mixed $userIndex): UserManagement { return new UserManagement( - $this->db, $this->request, + $this->db, + $this->request, $this->csrf, $this->session, $userIndex, diff --git a/src/Workflow/UserManagement.php b/src/Workflow/UserManagement.php index b143169..e243bca 100644 --- a/src/Workflow/UserManagement.php +++ b/src/Workflow/UserManagement.php @@ -1,12 +1,13 @@