Manual pager provider ==================== Create a service with the tag "fos_elastica.pager_provider" and attributes for the index and type for which the service will provide. ```yaml # app/config/config.yml services: acme.search_provider.user: class: Acme\UserBundle\Provider\UserPagerProvider tags: - { name: fos_elastica.pager_provider, index: app, type: user } ``` Its class must implement `FOS\ElasticaBundle\Provider\PagerProviderInterface`. ```php