Remove Date validator

git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3374 f459cee4-fb09-11de-96c3-f9c5f16c3c76
This commit is contained in:
adametz 2018-02-23 16:42:52 +00:00
parent fd9509420d
commit 62ed0bb650

View file

@ -50,10 +50,12 @@ class TravelerType extends AbstractType
]) ])
->add('firstName') ->add('firstName')
->add('lastName') ->add('lastName')
->add('birthDate', StDateType::class, [ ->add('birthDate')
'format' => 'dd.MM.y'
]
)
; ;
/*
, StDateType::class, [
'format' => 'dd.MM.yyyy'
]
*/
} }
} }