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

getScheduledDocumentUpdates() public method

Gets the currently scheduled document updates in this UnitOfWork.
    public function getScheduledDocumentUpdates()
    {
        return $this->documentUpdates;
    }

Usage Example

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