Fix #11: Use protected instead of private for _exec()

This commit is contained in:
Zach Borboa
2013-12-18 20:19:37 -08:00
parent 684c9d9071
commit e528288731
+1 -1
View File
@@ -145,7 +145,7 @@ class Curl {
return $data;
}
private function _exec() {
protected function _exec() {
$this->response = curl_exec($this->curl);
$this->curl_error_code = curl_errno($this->curl);
$this->curl_error_message = curl_error($this->curl);