Doctrine\ODM\MongoDB\UnitOfWork::getScheduledDocumentInsertions PHP Method

getScheduledDocumentInsertions() public method

Gets the currently scheduled document insertions in this UnitOfWork.
    public function getScheduledDocumentInsertions()
    {
        return $this->documentInsertions;
    }

Usage Example

Ejemplo n.º 1
0
 /**
  * Get the scheduled object insertions from a UnitOfWork
  *
  * @param UnitOfWork $uow
  * @return array
  */
 public function getScheduledObjectInsertions(UnitOfWork $uow)
 {
     return $uow->getScheduledDocumentInsertions();
 }
UnitOfWork