CacheDecoratorInterface.php 323 B

1234567891011121314151617181920
  1. <?php
  2. namespace Drupal\Core\CacheDecorator;
  3. /**
  4. * Defines an interface for cache decorator implementations.
  5. */
  6. interface CacheDecoratorInterface {
  7. /**
  8. * Specify the key to use when writing the cache.
  9. */
  10. public function setCacheKey($key);
  11. /**
  12. * Write the cache.
  13. */
  14. public function writeCache();
  15. }