silverstripe-framework/src/Core/Manifest/ManifestCache.php

15 lines
285 B
PHP
Raw Normal View History

<?php
namespace SilverStripe\Core\Manifest;
/**
* A basic caching interface that manifests use to store data.
*/
2016-11-29 00:31:16 +01:00
interface ManifestCache
{
public function __construct($name);
public function load($key);
public function save($data, $key);
public function clear();
}