templating = $templating; $this->personRepository = $personRepository; } public function myProfileAction() { $user = $this->getConnectedUser(); return $this->templating->render('TentacodeAppBundle:Person:profile.html.twig', [ 'user' => $user ]); } }