ManaPHP\Cache\Adapter\File::get PHP Method

get() public method

public get ( string $key ) : string | false
$key string
return string | false
    public function get($key)
    {
        $file = $this->_getFileName($key);
        if (@filemtime($file) >= time()) {
            return file_get_contents($file);
        } else {
            return false;
        }
    }