From ec7a03985ac621d4578e4fec11718d30ca81334e Mon Sep 17 00:00:00 2001 From: Michael Aherne Date: Tue, 7 Nov 2023 15:32:10 +0000 Subject: [PATCH] MDL-80030 filelib: Fix info type. --- lib/filelib.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/filelib.php b/lib/filelib.php index 2aa0560cd73..d1b9a5e4b31 100644 --- a/lib/filelib.php +++ b/lib/filelib.php @@ -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;