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