PHP Symfony框架Setter注入与Doctrine

时间:2016-11-20 21:39:57

标签: symfony dependency-injection

我在service.yml

中有以下设置
  appbundle.entity.countryrepository:
    class: AppBundle\Repository\CountryRepository
    calls:
      - [setPagination, ['@knp_paginator']]

控制器中的代码是:

$countryRepository = $em->getRepository('AppBundle:Country');

创建对象时,永远不会调用setPagination()

可能是什么原因/错误?

0 个答案:

没有答案