tikiwiki/packages/tiki-pkg-mediaalchemyst/doctrine/cache/lib/Doctrine/Common/Cache/MultiOperationCache.php
2023-11-20 20:52:04 +00:00

13 lines
251 B
PHP
Executable File

<?php
namespace Doctrine\Common\Cache;
/**
* Interface for cache drivers that supports multiple items manipulation.
*
* @link www.doctrine-project.org
*/
interface MultiOperationCache extends MultiGetCache, MultiDeleteCache, MultiPutCache
{
}