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 @@