Check is user found or not.
This commit is contained in:
@ -42,6 +42,10 @@ class PasswordRecoveryService implements ServiceInterface
|
|||||||
/** @var User $user */
|
/** @var User $user */
|
||||||
$user = $this->query->whereEmail($this->email)->one();
|
$user = $this->query->whereEmail($this->email)->one();
|
||||||
|
|
||||||
|
if ($user === null) {
|
||||||
|
throw new \RuntimeException('User not found.');
|
||||||
|
}
|
||||||
|
|
||||||
$token = TokenFactory::makeRecoveryToken($user->id);
|
$token = TokenFactory::makeRecoveryToken($user->id);
|
||||||
|
|
||||||
if (!$token) {
|
if (!$token) {
|
||||||
|
|||||||
Reference in New Issue
Block a user