MDL-80030 filelib: Fix info type.

This commit is contained in:
Michael Aherne 2023-11-07 15:32:10 +00:00
parent e4d1369475
commit ec7a03985a

View File

@ -3125,7 +3125,7 @@ class curl {
public $rawresponse = array();
/** @var array http header */
public $header = array();
/** @var string cURL information */
/** @var array cURL information */
public $info;
/** @var string error */
public $error;
@ -4190,7 +4190,7 @@ class curl {
/**
* Get curl information
*
* @return string
* @return array
*/
public function get_info() {
return $this->info;