diff --git a/src/Bundle/ChillReportBundle/Controller/ReportController.php b/src/Bundle/ChillReportBundle/Controller/ReportController.php index afcdec506..4dc914079 100644 --- a/src/Bundle/ChillReportBundle/Controller/ReportController.php +++ b/src/Bundle/ChillReportBundle/Controller/ReportController.php @@ -131,7 +131,7 @@ class ReportController extends AbstractController ->trans('The form is not valid. The report has not been created !') ); - return $this->render('ChillReportBundle:Report:new.html.twig', [ + return $this->render('@ChillReport/Report/new.html.twig', [ 'entity' => $entity, 'form' => $form->createView(), 'person' => $person, @@ -151,7 +151,7 @@ class ReportController extends AbstractController $em = $this->getDoctrine()->getManager(); /** @var Report $report */ - $report = $em->getRepository('ChillReportBundle:Report')->find($report_id); + $report = $em->getRepository(Report::class)->find($report_id); if (!$report) { throw $this->createNotFoundException( @@ -200,7 +200,7 @@ class ReportController extends AbstractController $cFGroup = $em->getRepository(\Chill\CustomFieldsBundle\Entity\CustomFieldsGroup::class)->find($cf_group_id); $reports = $em->getRepository('ChillReportBundle:Report')->findByCFGroup($cFGroup); - $response = $this->render('ChillReportBundle:Report:export.csv.twig', [ + $response = $this->render('@ChillReport/Report/export.csv.twig', [ 'reports' => $reports, 'cf_group' => $cFGroup, ]); @@ -309,7 +309,7 @@ class ReportController extends AbstractController $form = $this->createCreateForm($entity, $person, $cFGroup); - return $this->render('ChillReportBundle:Report:new.html.twig', [ + return $this->render('@ChillReport/Report/new.html.twig', [ 'entity' => $entity, 'form' => $form->createView(), 'person' => $person, @@ -526,7 +526,7 @@ class ReportController extends AbstractController $person = $em->getRepository(\Chill\PersonBundle\Entity\Person::class)->find($person_id); - $entity = $em->getRepository('ChillReportBundle:Report')->find($report_id); + $entity = $em->getRepository(Report::class)->find($report_id); if (!$entity || !$person) { throw $this->createNotFoundException( @@ -543,7 +543,7 @@ class ReportController extends AbstractController ]); $this->eventDispatcher->dispatch(PrivacyEvent::PERSON_PRIVACY_EVENT, $event); - return $this->render('ChillReportBundle:Report:view.html.twig', [ + return $this->render('@ChillReport/Report/view.html.twig', [ 'entity' => $entity, 'person' => $person, ]);