Incorrect namespace

master
Brady McDonough 2 years ago
parent 6cb0839256
commit 611d61d19f

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

@ -1,12 +1,13 @@
<?php declare(strict_types=1); <?php declare(strict_types=1);
namespace BradyMcD\TAATP; namespace BradyMcD\TAATP\Workflow;
use BradyMcD\TAATP\AntiCSRFInterface; use BradyMcD\TAATP\AntiCSRFInterface;
use BradyMcD\TAATP\Required\PersistenceInterface; use BradyMcD\TAATP\Required\PersistenceInterface;
use BradyMcD\TAATP\SessionInterface; use BradyMcD\TAATP\SessionInterface;
use BradyMcD\TAATP\HashInterface; use BradyMcD\TAATP\HashInterface;
use BradyMcD\TAATP\URI\Otpauth; use BradyMcD\TAATP\URI\Otpauth;
use BradyMcD\TAATP\WorkflowInterface;
use BradyMcD\RFC\_6238; use BradyMcD\RFC\_6238;
use Chillerlan\QRCode; use Chillerlan\QRCode;

Loading…
Cancel
Save