We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Recomputing changeset for attributes with removed values does not work.
Exemple:
foreach (array_unique($data->getRefererDatas()->toArray()) as $activity){ if (self::ACTIVITY_FAMILY !== $activity->getFamilyCode()){ continue; } if(!in_array($activity, $actualActivities)){ $activity->removeSubscribers($data); $activityAttribute = $activity->getFamily()->getAttribute('subscribers'); $event->recomputeAttributeChangeset($activity, $activityAttribute); } } }
The text was updated successfully, but these errors were encountered:
Works when manually removing the value with $em->remove()
Sorry, something went wrong.
VincentChalnot
No branches or pull requests
Recomputing changeset for attributes with removed values does not work.
Exemple:
The text was updated successfully, but these errors were encountered: