yii\authclient\OpenId::getClaimedId PHP 메소드

getClaimedId() 공개 메소드

public getClaimedId ( ) : string
리턴 string claimed identifier (identity).
    public function getClaimedId()
    {
        if ($this->_claimedId === null) {
            if (isset($this->data['openid_claimed_id'])) {
                $this->_claimedId = $this->data['openid_claimed_id'];
            } elseif (isset($this->data['openid_identity'])) {
                $this->_claimedId = $this->data['openid_identity'];
            }
        }
        return $this->_claimedId;
    }