. */ namespace SP\Domain\Account; use SP\Core\Exceptions\ConstraintException; use SP\Core\Exceptions\NoSuchPropertyException; use SP\Core\Exceptions\QueryException; use SP\Core\Exceptions\ValidationException; use SP\Domain\Account\Services\AccountRequest; /** * Class AccountPreset * * @package SP\Domain\Account\Services */ interface AccountPresetServiceInterface { /** * @throws ValidationException * @throws ConstraintException * @throws NoSuchPropertyException * @throws QueryException */ public function checkPasswordPreset(AccountRequest $accountRequest): void; }