예제 #1
0
 /**
  * Creates a form to delete a Comunidad entity.
  *
  * @param Comunidad $comunidad The Comunidad entity
  *
  * @return \Symfony\Component\Form\Form The form
  */
 private function createDeleteForm(Comunidad $comunidad)
 {
     return $this->createFormBuilder()->setAction($this->generateUrl('comunidad_delete', ['id' => $comunidad->getId()]))->setMethod('DELETE')->getForm();
 }