0

我从 symfony 文档中关注这个

http://symfony.com/doc/current/cookbook/security/entity_provider.html

class UserRepository extends EntityRepository implements UserProviderInterface
{
    public function loadUserByUsername($username)
    {

现在我的问题是,如果我想拥有自己的函数,retrievePassowrd()那么我可以在存储库中声明它还是我需要创建一个新接口,然后从该接口扩展 userRepo

4

1 回答 1

1

是的,您可以在存储库中拥有自己的功能。

于 2012-07-12T02:29:05.667 回答