Skip to content

Instantly share code, notes, and snippets.

@jwage
Created February 11, 2011 18:08
Show Gist options
  • Save jwage/822762 to your computer and use it in GitHub Desktop.
Save jwage/822762 to your computer and use it in GitHub Desktop.
class DDC1020OrderEventListener
{
public function preUpdate(LifecycleEventArgs $args)
{
$order = $args->getEntity();
$order->tax = 100;
$em = $args->getEntityManager();
$uow = $em->getUnitOfWork();
$uow->recomputeSingleEntityChangeSet(
$em->getClassMetadata(get_class($order)),
$args->getEntity()
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment