context = $context; $this->teaRepository = $teaRepository; } public function indexAction(): ResponseInterface { $userUid = $this->getUidOfLoggedInUser(); if ($userUid > 0) { $this->view->assign('teas', $this->teaRepository->findByOwnerUid($userUid)); } return $this->htmlResponse(); } /** * @return int<0, max> */ private function getUidOfLoggedInUser(): int { return $this->context->getPropertyFromAspect('frontend.user', 'id'); } }