Advertisement
dead__

Untitled

May 30th, 2013
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. $form = $app['form.factory']->createBuilder('form', $data)
  2.     ->add('name', 'text', array(
  3.         'label'  => 'Name',
  4.         'constraints' => array(new Assert\NotBlank(), new Assert\Length(array('min' => 5)))
  5.     ))->getForm();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement