diff --git a/lib/Doctrine/ORM/Cache/CacheInstantiator.php b/lib/Doctrine/ORM/Cache/CacheInstantiator.php new file mode 100644 index 000000000..a88442b24 --- /dev/null +++ b/lib/Doctrine/ORM/Cache/CacheInstantiator.php @@ -0,0 +1,41 @@ +. + */ + +namespace Doctrine\ORM\Cache; + +use Doctrine\ORM\EntityManagerInterface; + +/** + * Contract for building second level cache instances. + * + * @since 2.5 + * @author Marco Pivetta + */ +interface CacheInstantiator +{ + /** + * Build timestamp cache region + * + * @param EntityManagerInterface $entityManager + * + * @return \Doctrine\ORM\Cache + */ + public function getCache(EntityManagerInterface $entityManager); +}