chore: Create AccountCryptService tests

Signed-off-by: Rubén D <nuxsmin@syspass.org>
This commit is contained in:
Rubén D
2022-11-27 16:01:51 +01:00
parent 41b171e89d
commit 930b1f7139
51 changed files with 989 additions and 367 deletions

View File

@@ -28,7 +28,7 @@ use Exception;
use SP\Core\Acl\ActionsInterface;
use SP\Core\Events\Event;
use SP\Core\Events\EventMessage;
use SP\Domain\Account\Services\AccountRequest;
use SP\Domain\Account\Dtos\AccountRequest;
use SP\Domain\Api\Services\ApiResponse;
/**
@@ -73,7 +73,7 @@ final class EditController extends AccountBase
}
/**
* @return \SP\Domain\Account\Services\AccountRequest
* @return \SP\Domain\Account\Dtos\AccountRequest
* @throws \SP\Domain\Common\Services\ServiceException
*/
private function buildAccountRequest(): AccountRequest
@@ -106,4 +106,4 @@ final class EditController extends AccountBase
return $accountRequest;
}
}
}