|
|
|
@ -17,7 +17,6 @@ use BradyMcD\TAATP\Session\Base as Session;
|
|
|
|
use BradyMcD\TAATP\Workflow\UserManagement;
|
|
|
|
use BradyMcD\TAATP\Workflow\UserManagement;
|
|
|
|
use BradyMcD\TAATP\Workflow\Authenticate;
|
|
|
|
use BradyMcD\TAATP\Workflow\Authenticate;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* The primary entrypoint of the module.
|
|
|
|
* The primary entrypoint of the module.
|
|
|
|
* @SuppressWarnings(PHPMD.ShortVariable)
|
|
|
|
* @SuppressWarnings(PHPMD.ShortVariable)
|
|
|
|
@ -47,7 +46,8 @@ class Factory
|
|
|
|
public function userManagement(mixed $userIndex): UserManagement
|
|
|
|
public function userManagement(mixed $userIndex): UserManagement
|
|
|
|
{
|
|
|
|
{
|
|
|
|
return new UserManagement(
|
|
|
|
return new UserManagement(
|
|
|
|
$this->db, $this->request,
|
|
|
|
$this->db,
|
|
|
|
|
|
|
|
$this->request,
|
|
|
|
$this->csrf,
|
|
|
|
$this->csrf,
|
|
|
|
$this->session,
|
|
|
|
$this->session,
|
|
|
|
$userIndex,
|
|
|
|
$userIndex,
|
|
|
|
|