我希望每个实体都有一个选民。
例如:
CommentController处理Comment Entity并使用CommentVoter检查权限。
ArticleController处理文章实体并使用ArticleVoter检查权限。
依旧......
我认为denyAccessUnlessGranted应该检查哪个选民要调用,但是它总是调用在services.yml中声明的第一个:
$this->denyAccessUnlessGranted('view', $comment);
知道怎么做吗? 我是关于Symfony 2.8的。
由于