freshdesk-php-sdk
freshdesk-php-sdk copied to clipboard
Add Guzzle option parameter into Api contructor
With this PR, we can add Guzzle option with Api constructor.
For example, in order to disable SSL checking (ok it's a bad idea, it's just a dummy example):
$api = new Api(api_key, api_domain, array('verify' => false));
It is backward compatible.