We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6782aa0 commit 00f5abfCopy full SHA for 00f5abf
src/Service/UserManager.php
@@ -269,6 +269,12 @@ public function getUserByPasswordResetToken(string $passwordResetToken) {
269
return $this->entityManager->getRepository(User::class)
270
->findOneByPasswordResetToken($passwordResetToken);
271
}
272
+
273
+ /**
274
+ * Find user by Email
275
+ * @param string $email
276
+ * @return mixed
277
+ */
278
public function getUserByEmail(string $email){
279
280
->findOneByEmail($email);
0 commit comments