3 namespace BookStack\Uploads;
5 use BookStack\Exceptions\HttpFetchException;
10 * Fetch content from an external URI.
14 * @throws HttpFetchException
18 public function fetch(string $uri)
21 curl_setopt_array($ch, [
23 CURLOPT_RETURNTRANSFER => 1,
24 CURLOPT_CONNECTTIMEOUT => 5,
27 $data = curl_exec($ch);
28 $err = curl_error($ch);
32 throw new HttpFetchException($err);