From fbbe922cb636d56230773df8d2d09b6490021b96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Gallego?= Date: Fri, 3 Jan 2014 09:27:21 +0100 Subject: [PATCH] Fix tests --- .../ORM/Cache/Persister/AbstractCollectionPersister.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lib/Doctrine/ORM/Cache/Persister/AbstractCollectionPersister.php b/lib/Doctrine/ORM/Cache/Persister/AbstractCollectionPersister.php index 41bf1d914..6ea5af1cc 100644 --- a/lib/Doctrine/ORM/Cache/Persister/AbstractCollectionPersister.php +++ b/lib/Doctrine/ORM/Cache/Persister/AbstractCollectionPersister.php @@ -20,6 +20,7 @@ namespace Doctrine\ORM\Cache\Persister; +use Doctrine\Common\Collections\Criteria; use Doctrine\ORM\Cache\EntityCacheKey; use Doctrine\ORM\Cache\CollectionCacheKey; use Doctrine\ORM\Persisters\CollectionPersister; @@ -272,4 +273,12 @@ abstract class AbstractCollectionPersister implements CachedCollectionPersister { return $this->persister->slice($collection, $offset, $length); } + + /** + * {@inheritDoc} + */ + public function loadCriteria(PersistentCollection $collection, Criteria $criteria) + { + throw new \BadMethodCallException("Filtering a collection by Criteria is not supported by this CollectionPersister."); + } }