@@ 705-707 (lines=3) @@ | ||
702 | $actualValue = $actualData[$propName]; |
|
703 | } |
|
704 | // ignore inverse side of reference relationship |
|
705 | if (isset($class->fieldMappings[$propName]['reference']) && $class->fieldMappings[$propName]['isInverseSide']) { |
|
706 | continue; |
|
707 | } |
|
708 | $changeSet[$propName] = array(null, $actualValue); |
|
709 | } |
|
710 | $this->documentChangeSets[$oid] = $changeSet; |
|
@@ 770-772 (lines=3) @@ | ||
767 | } |
|
768 | ||
769 | // ignore inverse side of reference relationship |
|
770 | if (isset($class->fieldMappings[$propName]['reference']) && $class->fieldMappings[$propName]['isInverseSide']) { |
|
771 | continue; |
|
772 | } |
|
773 | ||
774 | // Persistent collection was exchanged with the "originally" |
|
775 | // created one. This can only mean it was cloned and replaced |