mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-08-24 21:29:04 +00:00
Make internal method private
This commit is contained in:
@@ -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
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user