Use inner collection count if initialized
This commit is contained in:
parent
b556bcb16c
commit
9b7dce1940
1 changed files with 3 additions and 12 deletions
|
@ -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;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue