symfony: difference between doctrine model "User" and symfony "myUser"?
- by fayer
what is the difference between the symfony "myUser" and doctrine model "User"?
where should i put the methods for an user?
eg. $user-createThread(), $user-deleteThread() and so on
should $user be an instance of the doctrine model User (cause i have a table called User) or the myUser that extends sfBasicSecurityUser?
thanks!