repository = $entityManager->getRepository(Center::class); } public function find($id, $lockMode = null, $lockVersion = null): ?Center { return $this->repository->find($id, $lockMode, $lockVersion); } /** * @return Center[] */ public function findActive(): array { return $this->repository->findBy(['isActive' => true], ['name' => 'ASC']); } /** * @return Center[] */ public function findAll(): array { return $this->repository->findAll(); } /** * @param mixed|null $limit * @param mixed|null $offset * * @return Center[] */ public function findBy(array $criteria, ?array $orderBy = null, $limit = null, $offset = null): array { return $this->repository->findBy($criteria, $orderBy, $limit, $offset); } public function findOneBy(array $criteria, ?array $orderBy = null): ?Center { return $this->repository->findOneBy($criteria, $orderBy); } public function getClassName() { return Center::class; } }