isMethod(Request::METHOD_POST)) { $this->entityManager->remove($application); $this->entityManager->flush(); $this->eventDispatcher->dispatch( new ApplicationDeletedEvent($application), ApplicationDeletedEvent::NAME ); $this->addFlash('success', 'Die Bewerbung wurde gelöscht'); return new HxRedirectResponse($this->generateUrl('app_administrative_assignment_detail', [ 'uuid' => $application->getAssignment()->getUuid(), ])); } return $this->render('admin/application/modal_delete.html.twig', [ 'application' => $application, ]); } }