*/ class DeleteGistForm extends AbstractForm { public function build(array $options = array()) { $this->builder->add( 'id', 'hidden', array( 'required' => true, 'constraints' => array( new NotBlank(), ), ) ); return $this->builder; } }