Auth_OpenID_PredisStore::getAssociationFromServer PHP Метод

getAssociationFromServer() приватный Метод

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;
    }