openclassify/vendor/doctrine/cache/lib/Doctrine/Common/Cache/MultiOperationCache.php
Mostafa Moradi 59dbba58fb readme
2022-04-08 12:26:15 +03:00

13 lines
251 B
PHP

<?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
{
}