PayWithAmazon\Client::setClientId PHP Method

setClientId() public method

* 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');
        }
    }