Hi everyone, with Propel, models had set* methods in autogenerated classes,
so when you needed to extend some method, you'd just do
public function method($val)
{
parent::method($val);
// whatever goes here
}
but with Doctrine, there is _no_ parent::method, so, how do I execute
someting on-save of a specific row?
Thanks!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"symfony users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en
-~----------~----~----~----~------~----~------~--~---