Auth_OpenID_PredisStore::getAssociationFromServer PHP Method

getAssociationFromServer() private method

Function to actually receive and unserialize the association from the server.
private getAssociationFromServer ( $associationKey )
    private function getAssociationFromServer($associationKey)
    {
        $association = $this->redis->get($associationKey);
        return $association ? unserialize($association) : null;
    }