Skip to content

Commit

Permalink
MDL-80030 filelib: Fix info type.
Browse files Browse the repository at this point in the history
  • Loading branch information
micaherne committed Nov 8, 2023
1 parent e4d1369 commit ec7a039
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/filelib.php
Expand Up @@ -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;
Expand Down Expand Up @@ -4190,7 +4190,7 @@ public function options($url, $options = array()) {
/**
* Get curl information
*
* @return string
* @return array
*/
public function get_info() {
return $this->info;
Expand Down

0 comments on commit ec7a039

Please sign in to comment.