Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. public function buildForm(FormBuilderInterface $builder, array $options)
  2. {
  3. $builder->add('name', TextType::class, [
  4. 'constraints' => [
  5. new NotBlank(),
  6. new Length(
  7. [
  8. 'min' => 2,
  9. 'max' => 255,
  10. ]
  11. ),
  12. ],
  13. ]);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement