Add method visibility
This commit is contained in:
parent
8514ec7320
commit
6cb5097ea8
1 changed files with 6 additions and 6 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue