<?php/**
* @file
* Contains Drupal\Core\CacheDecorator\CacheDecoratorInterface.
*/namespaceDrupal\Core\CacheDecorator;
/**
* Defines an interface for cache decorator implementations.
*/interfaceCacheDecoratorInterface {
/**
* Specify the key to use when writing the cache.
*/
public functionsetCacheKey($key);
/**
* Write the cache.
*/
public functionwriteCache();
}