I have the following settings in service.yml
appbundle.entity.countryrepository: class: AppBundle\Repository\CountryRepository calls: - [setPagination, ['@knp_paginator']]
code in controller is:
$countryRepository = $em->getRepository('AppBundle:Country');
When the object is created, setPagination()
is never called?
What can be the reason/faults?