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

setDocumentChangeSet() 공개 메소드

INTERNAL: Sets the changeset for a document.
public setDocumentChangeSet ( object $document, array $changeset )
$document object
$changeset array
    public function setDocumentChangeSet($document, $changeset)
    {
        $this->documentChangeSets[spl_object_hash($document)] = $changeset;
    }
UnitOfWork