Я вызываю функцию репозитория со следующими подробностями
$ratingData = $em->getRepository(PatientFeedback::class)->getRatingReviewData($doctorId, $this->timezone);
, и мой класс репозитория выглядит так:
namespace App\Repository;
class PatientFeedbackRepository extends ServiceEntityRepository
{
}
получаю ошибку как:
Attempted to call function \"getRatingReviewData\" from namespace \"Api\\Controller\".
isчто-то конкретное, что мне не хватает, чтобы использовать хранилище сущностей?