Replace chill_main.paginator_factory by PaginatorFactory::class

This commit is contained in:
Marc Ducobu 2021-07-27 15:59:03 +02:00
parent 5c2c509805
commit 9e9a459a20

View File

@ -1141,7 +1141,7 @@ class CRUDController extends AbstractController
*/
protected function getPaginatorFactory(): PaginatorFactory
{
return $this->container->get('chill_main.paginator_factory');
return $this->container->get(PaginatorFactory::class);
}
/**