fkooman\OAuth\Client\Api::setClientConfigId PHP Méthode

setClientConfigId() public méthode

public setClientConfigId ( $clientConfigId )
    public function setClientConfigId($clientConfigId)
    {
        if (!is_string($clientConfigId) || 0 >= strlen($clientConfigId)) {
            throw new ApiException('clientConfigId must be a non-empty string');
        }
        $this->clientConfigId = $clientConfigId;
    }