Doctrine\ODM\MongoDB\UnitOfWork::getScheduledDocumentUpdates PHP 메소드

getScheduledDocumentUpdates() 공개 메소드

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

Usage Example

예제 #1
0
파일: ODM.php 프로젝트: nahakiole/cloudrexx
 /**
  * Get the scheduled object updates from a UnitOfWork
  *
  * @param UnitOfWork $uow
  * @return array
  */
 public function getScheduledObjectUpdates(UnitOfWork $uow)
 {
     return $uow->getScheduledDocumentUpdates();
 }
UnitOfWork