PayWithAmazon\Client::setClientId PHP 메소드

setClientId() 공개 메소드

* Setter for config['client_id'] Sets the value for config['client_id'] variable
public setClientId ( $value )
    public function setClientId($value)
    {
        if (!empty($value)) {
            $this->config['client_id'] = $value;
        } else {
            throw new \Exception('setter value for client ID provided is empty');
        }
    }