em = $em; $this->pronunciations = $em->getRepository(Pronunciation::class); } public function find($value) { return $this->pronunciations->find($value); } public function findBy($criteria = [],$orderBy = []) { return $this->pronunciations->findBy($criteria,$orderBy); } public function findPairs($criteria,$value,$orderBy,$key) { return $this->pronunciations->findPairs($criteria,$value,$orderBy,$key); } }