1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

Use inner collection count if initialized

This commit is contained in:
Michaël Gallego 2013-12-19 20:48:09 +01:00 committed by Marco Pivetta
parent b556bcb16c
commit 9b7dce1940

View file

@ -53,13 +53,6 @@ class LazyCriteriaCollection implements Collection
*/ */
protected $initialized = false; protected $initialized = false;
/**
* Allow to cache the count
*
* @var int
*/
protected $count;
/** /**
* @param BasicEntityPersister $entityPersister * @param BasicEntityPersister $entityPersister
* @param Criteria $criteria * @param Criteria $criteria
@ -77,13 +70,11 @@ class LazyCriteriaCollection implements Collection
*/ */
public function count() public function count()
{ {
if (null !== $this->count) { if ($this->initialized) {
return $this->count; return $this->collection->count();
} }
$this->count = $this->entityPersister->count($this->criteria); return $this->entityPersister->count($this->criteria);
return $this->count;
} }
/** /**