| @@ 650-654 (lines=5) @@ | ||
| 647 | $changeSet = array(); |
|
| 648 | ||
| 649 | foreach ($actualData as $propName => $actualValue) { |
|
| 650 | if ( ! isset($class->associationMappings[$propName])) { |
|
| 651 | $changeSet[$propName] = array(null, $actualValue); |
|
| 652 | ||
| 653 | continue; |
|
| 654 | } |
|
| 655 | ||
| 656 | $assoc = $class->associationMappings[$propName]; |
|
| 657 | ||
| @@ 687-695 (lines=9) @@ | ||
| 684 | } |
|
| 685 | ||
| 686 | // if regular field |
|
| 687 | if ( ! isset($class->associationMappings[$propName])) { |
|
| 688 | if ($isChangeTrackingNotify) { |
|
| 689 | continue; |
|
| 690 | } |
|
| 691 | ||
| 692 | $changeSet[$propName] = array($orgValue, $actualValue); |
|
| 693 | ||
| 694 | continue; |
|
| 695 | } |
|
| 696 | ||
| 697 | $assoc = $class->associationMappings[$propName]; |
|
| 698 | ||