FileFetcher::getRemote PHP Method

getRemote() static public method

Récupère le contenu à l'aide file_get_contents
static public getRemote ( string $url ) : string
$url string L'URL du fichier
return string Le contenu du fichier
    static function getRemote($url)
    {
        return file_get_contents($url);
    }