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

exists() public method

public exists ( string $id ) : boolean
$id string
return boolean
    public function exists($id)
    {
        $file = $this->_getFileName($id);
        return is_file($file);
    }