. */ namespace Doctrine\Common\Cache; /** * Interface for cache drivers that supports multiple items manipulation. * * @link www.doctrine-project.org * @since 1.7 * @author Luís Cobucci */ interface MultiOperationCache extends MultiGetCache, MultiDeleteCache, MultiPutCache { }