@@ 557-563 (lines=7) @@ | ||
554 | // Only MANAGED documents that are NOT SCHEDULED FOR INSERTION, UPSERT OR DELETION are processed here. |
|
555 | $oid = spl_object_hash($document); |
|
556 | ||
557 | if ( ! isset($this->documentInsertions[$oid]) |
|
558 | && ! isset($this->documentUpserts[$oid]) |
|
559 | && ! isset($this->documentDeletions[$oid]) |
|
560 | && isset($this->documentStates[$oid]) |
|
561 | ) { |
|
562 | $this->computeChangeSet($class, $document); |
|
563 | } |
|
564 | } |
|
565 | ||
566 | /** |
|
@@ 892-898 (lines=7) @@ | ||
889 | } |
|
890 | // Only MANAGED documents that are NOT SCHEDULED FOR INSERTION, UPSERT OR DELETION are processed here. |
|
891 | $oid = spl_object_hash($document); |
|
892 | if ( ! isset($this->documentInsertions[$oid]) |
|
893 | && ! isset($this->documentUpserts[$oid]) |
|
894 | && ! isset($this->documentDeletions[$oid]) |
|
895 | && isset($this->documentStates[$oid]) |
|
896 | ) { |
|
897 | $this->computeChangeSet($class, $document); |
|
898 | } |
|
899 | } |
|
900 | } |
|
901 | } |