). */ public $request_class = 'CFRequest'; /** * The default class to use for HTTP Responses (defaults to ). */ public $response_class = 'CFResponse'; /** * The active credential set. */ public $credentials; /*%******************************************************************************************%*/ // CONSTRUCTOR /** * Constructs a new instance of this class. * * @param string $url (Optional) The URL to request or service endpoint to query. * @param string $proxy (Optional) The faux-url to use for proxy settings. Takes the following format: `proxy://user:pass@hostname:port` * @param array $helpers (Optional) An associative array of classnames to use for request, and response functionality. Gets passed in automatically by the calling class. * @param CFCredential $credentials (Required) The credentials to use for signing and making requests. * @return $this A reference to the current instance. */ public function __construct($url = null, $proxy = null, $helpers = null, CFCredential $credentials = null) { parent::__construct($url, $proxy, $helpers); // Standard settings for all requests $this->set_useragent(CFRUNTIME_USERAGENT); $this->credentials = $credentials; $this->cacert_location = ($this->credentials['certificate_authority'] ? $this->credentials['certificate_authority'] : false); return $this; } }