PhpBrew\Downloader\BaseDownloader::request PHP Метод

request() публичный Метод

fetch the remote content.
public request ( $url ) : boolean | string
$url the url to be downloaded
Результат boolean | string return content if download successfully, otherwise false is returned
    public function request($url)
    {
        $path = $this->download($url);
        return $path === false ? false : file_get_contents($path);
    }