dsbifvcxr458755493 2016-02-01 05:07
浏览 54
已采纳

Symfony2:如何扩展DoctrineBahaviors?

I am using DoctrineBehaviors extension in my Symfony 3.0 project. Due to this change I have to override the UserCallable class. Is it possible to do this with bundle inheritance or any other way?

In more detail I want to override the original method:

class UserCallable {
    ...
    public function __invoke() {
        $token = $this->container->get('security.context')->getToken();
        if (null !== $token) {
            return $token->getUser();
        }
    }
}

probably in my custom bundle class:

class MyUserCallable extends UserCallable {
    ...
    public function __invoke() {
        $token = $this->container->get('security.token_storage')->getToken();
        if (null !== $token) {
            return $token->getUser();
        }
    }
}
  • 写回答

1条回答 默认 最新

  • dongzouh51192 2016-02-01 23:28
    关注

    As Jason Roman said, upgrading from 1.1 to 1.3 solved the issue.

    In case of standard extensions (e.g. adding publishedAt, publishedBy like in DoctrineExtensions) - using traits should do the trick.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部