Bolt\Storage\Repository\UsersRepository::getUserShadowAuth PHP Method

getUserShadowAuth() public method

Get user based on password reset notification.
public getUserShadowAuth ( $shadowtoken ) : Bolt\Storage\Entity\Users | false
return Bolt\Storage\Entity\Users | false
    public function getUserShadowAuth($shadowtoken)
    {
        $query = $this->getUserShadowAuthQuery($shadowtoken);
        return $this->findOneWith($query);
    }