Pinq\Caching\CacheProvider::setFileCache PHP Метод

setFileCache() публичный статический Метод

Uses the supplied file to store the parsed queries.
public static setFileCache ( string $fileName ) : void
$fileName string The file to cache the data
Результат void
    public static function setFileCache($fileName)
    {
        self::$cacheImplementation = new CSVFileCache($fileName);
        self::$hasBeenCleared = false;
    }