upload = $upload; $this->http = $http; $this->laravelStorage = $laravelStorage; } /** * Download file from specified remote url. * * @param string $url * @param array $params * * @return string */ public function downloadRemoteFile($url, $params = []) { return $this->http->request('GET', $url, $params)->getBody()->getContents(); } }