Esempio n. 1
0
 /**
  * Creates a form to delete a Country entity.
  *
  * @param Country $country The Country entity
  *
  * @return \Symfony\Component\Form\Form The form
  */
 private function createDeleteForm(Country $country)
 {
     return $this->createFormBuilder()->setAction($this->generateUrl('country_delete', array('id' => $country->getId())))->setMethod('DELETE')->getForm();
 }