From 9b2ee886833cb2dc6149858741a4457527d5ca14 Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Thu, 10 Apr 2014 03:15:15 +0200 Subject: [PATCH] DDC-3078 - removing cache class name setter/getter from cache configuration API --- lib/Doctrine/ORM/Cache/CacheConfiguration.php | 29 ------------------- 1 file changed, 29 deletions(-) diff --git a/lib/Doctrine/ORM/Cache/CacheConfiguration.php b/lib/Doctrine/ORM/Cache/CacheConfiguration.php index 2e9d73f8f..512caa98e 100644 --- a/lib/Doctrine/ORM/Cache/CacheConfiguration.php +++ b/lib/Doctrine/ORM/Cache/CacheConfiguration.php @@ -57,11 +57,6 @@ class CacheConfiguration */ private $cacheInstantiator; - /** - * @var string - */ - private $cacheClassName = 'Doctrine\ORM\Cache\DefaultCache'; - /** * @return \Doctrine\ORM\Cache\CacheFactory|null */ @@ -164,28 +159,4 @@ class CacheConfiguration return $this->cacheInstantiator; } - - /** - * @param string $className - * - * @throws \Doctrine\ORM\ORMException If is not a \Doctrine\ORM\Cache - */ - public function setCacheClassName($className) - { - $reflectionClass = new \ReflectionClass($className); - - if ( ! $reflectionClass->implementsInterface('Doctrine\ORM\Cache')) { - throw ORMException::invalidSecondLevelCache($className); - } - - $this->cacheClassName = $className; - } - - /** - * @return string A \Doctrine\ORM\Cache class name - */ - public function getCacheClassName() - { - return $this->cacheClassName; - } }