Make internal method private

This commit is contained in:
Zach Borboa
2016-09-04 01:42:17 -07:00
parent c2d04221e7
commit 7038db4538
2 changed files with 2 additions and 3 deletions
-1
View File
@@ -187,7 +187,6 @@ Curl::close()
Curl::complete($callback)
Curl::delete($url, $query_parameters = array(), $data = array())
Curl::download($url, $mixed_filename)
Curl::downloadComplete($fh)
Curl::error($callback)
Curl::exec($ch = null)
Curl::get($url, $data = array())
+2 -2
View File
@@ -257,10 +257,10 @@ class Curl
/**
* Download Complete
*
* @access public
* @access private
* @param $fh
*/
public function downloadComplete($fh)
private function downloadComplete($fh)
{
if (!$this->error && $this->downloadCompleteFunction) {
rewind($fh);