MultiOperationCache.php 251 B

123456789101112
  1. <?php
  2. namespace Doctrine\Common\Cache;
  3. /**
  4. * Interface for cache drivers that supports multiple items manipulation.
  5. *
  6. * @link www.doctrine-project.org
  7. */
  8. interface MultiOperationCache extends MultiGetCache, MultiDeleteCache, MultiPutCache
  9. {
  10. }