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

get() public method

public get ( string $id ) : false | string
$id string
return false | string
    public function get($id)
    {
        $file = $this->_getFileName($id);
        if (is_file($file)) {
            return file_get_contents($file);
        } else {
            return false;
        }
    }