| @@ 625-629 (lines=5) @@ | ||
| 622 | $changeSet = []; |
|
| 623 | ||
| 624 | foreach ($actualData as $propName => $actualValue) { |
|
| 625 | if ( ! isset($class->associationMappings[$propName])) { |
|
| 626 | $changeSet[$propName] = [null, $actualValue]; |
|
| 627 | ||
| 628 | continue; |
|
| 629 | } |
|
| 630 | ||
| 631 | $assoc = $class->associationMappings[$propName]; |
|
| 632 | ||
| @@ 662-670 (lines=9) @@ | ||
| 659 | } |
|
| 660 | ||
| 661 | // if regular field |
|
| 662 | if ( ! isset($class->associationMappings[$propName])) { |
|
| 663 | if ($isChangeTrackingNotify) { |
|
| 664 | continue; |
|
| 665 | } |
|
| 666 | ||
| 667 | $changeSet[$propName] = [$orgValue, $actualValue]; |
|
| 668 | ||
| 669 | continue; |
|
| 670 | } |
|
| 671 | ||
| 672 | $assoc = $class->associationMappings[$propName]; |
|
| 673 | ||