diff --git a/lib/Doctrine/ORM/EntityManager.php b/lib/Doctrine/ORM/EntityManager.php index 0c1b16b5c..175e3108e 100644 --- a/lib/Doctrine/ORM/EntityManager.php +++ b/lib/Doctrine/ORM/EntityManager.php @@ -166,8 +166,8 @@ use Doctrine\Common\Util\ClassUtils; ); if ($config->isSecondLevelCacheEnabled()) { - $cacheClass = $config->getSecondLevelCacheConfiguration()->getCacheClassName(); - $this->cache = new $cacheClass($this); + $cacheInstantiator = $config->getSecondLevelCacheConfiguration()->getCacheInstantiator(); + $this->cache = $cacheInstantiator($this); } }