clearDocumentChangeSet() 공개 메소드

INTERNAL: Clears the property changeset of the document with the given OID.
public clearDocumentChangeSet ( string $oid )
$oid string The document's OID.
예제 #1
0
파일: ODM.php 프로젝트: nahakiole/cloudrexx
 /**
  * Clears the property changeset of the object with the given OID.
  *
  * @param UnitOfWork $uow
  * @param string $oid The object's OID.
  */
 public function clearObjectChangeSet(UnitOfWork $uow, $oid)
 {
     $uow->clearDocumentChangeSet($oid);
 }