adjust countperson to make it work again

This commit is contained in:
2022-08-02 13:44:28 +02:00
parent ea12c60154
commit c72dc83c06
3 changed files with 19 additions and 19 deletions

View File

@@ -31,6 +31,11 @@ final class PersonRepository implements ObjectRepository
$this->repository = $entityManager->getRepository(Person::class);
}
public function createQueryBuilder(string $alias, ?string $indexBy = null): QueryBuilder
{
return $this->repository->createQueryBuilder($alias, $indexBy);
}
/**
* @param $centers
*