From 6cb5097ea817d3cedcf831711c72498fa5341847 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Gallego?= Date: Thu, 13 Feb 2014 23:26:23 +0100 Subject: [PATCH] Add method visibility --- lib/Doctrine/ORM/LazyCriteriaCollection.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/Doctrine/ORM/LazyCriteriaCollection.php b/lib/Doctrine/ORM/LazyCriteriaCollection.php index 522d01d47..c88cc083e 100644 --- a/lib/Doctrine/ORM/LazyCriteriaCollection.php +++ b/lib/Doctrine/ORM/LazyCriteriaCollection.php @@ -71,18 +71,18 @@ class LazyCriteriaCollection extends AbstractLazyCollection implements Selectabl /** * {@inheritDoc} */ - protected function doInitialize() + public function matching(Criteria $criteria) { - $elements = $this->entityPersister->loadCriteria($this->criteria); - $this->collection = new ArrayCollection($elements); + $this->initialize(); + return $this->collection->matching($criteria); } /** * {@inheritDoc} */ - function matching(Criteria $criteria) + protected function doInitialize() { - $this->initialize(); - return $this->collection->matching($criteria); + $elements = $this->entityPersister->loadCriteria($this->criteria); + $this->collection = new ArrayCollection($elements); } }