Patched to Drupal 8.4.8 level. See https://www.drupal.org/sa-core-2018-004 and patch...
[yaffs-website] / web / core / lib / Drupal / Core / CacheDecorator / CacheDecoratorInterface.php
1 <?php
2
3 namespace Drupal\Core\CacheDecorator;
4
5 /**
6  * Defines an interface for cache decorator implementations.
7  */
8 interface CacheDecoratorInterface {
9
10   /**
11    * Specify the key to use when writing the cache.
12    */
13   public function setCacheKey($key);
14
15   /**
16    * Write the cache.
17    */
18   public function writeCache();
19
20 }