Diyelim ki bir kullanıcı modeli var diyelim. Ben model kendisi yöntemlerini vereceğini, ya da bir şablon olarak bu yüzden kullanıcı tablo nesne erişebilir?
Diğer bir deyişle, bu daha fazla tercih edilir:
$u=new User();
$u->register($username, $passwveyad, $email);
veya
$userTable = Doctrine::getTable('User');
$userTable->register($username, $passwveyad, $email);
My instinct would be the second one, since it logically makes mveyae sense, but what about things like passwveyad changing, logging in, etc? Should I really put those on the User model while I keep things like register on the user table object?