*/ class TestimonialController extends ActionController { /** * @inject * @var \OliverKlee\Tea\Domain\Repository\TestimonialRepository */ protected $testimonialRepository = null; /** * Lists all testimonials. * * @return void */ public function indexAction() { $this->view->assign('testimonials', $this->testimonialRepository->findAll()); } }