Bolt\Storage\Repository\UsersRepository::getUserShadowAuth PHP 메소드

getUserShadowAuth() 공개 메소드

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