teaRepository = $teaRepository; } public function indexAction(): ResponseInterface { $this->view->assign('teas', $this->teaRepository->findAll()); return $this->htmlResponse(); } public function showAction(Tea $tea): ResponseInterface { $this->view->assign('tea', $tea); return $this->htmlResponse(); } }