Clean up capitalization

This commit is contained in:
Zach Borboa
2014-12-08 00:12:50 -08:00
parent 0bab1dd46c
commit 77bbf1bd14
+2 -2
View File
@@ -106,9 +106,9 @@ class Curl
} else {
$this->base_url = $url_mixed;
$this->url = $this->buildURL($url_mixed, $data);
$this->setopt(CURLOPT_URL, $this->url);
$this->setOpt(CURLOPT_URL, $this->url);
$this->setOpt(CURLOPT_CUSTOMREQUEST, 'GET');
$this->setopt(CURLOPT_HTTPGET, true);
$this->setOpt(CURLOPT_HTTPGET, true);
return $this->exec();
}
}