1 | <?php |
||
7 | class BirthdayOptionsBuilder extends AbstractOptionsBuilder |
||
8 | { |
||
9 | use Behavior\DateTimeCommonTrait; |
||
10 | use Behavior\DateTypeTrait; |
||
11 | |||
12 | const WIDGET_CHOICE = 'choice'; |
||
13 | const WIDGET_TEXT = 'text'; |
||
14 | const WIDGET_SINGLE_TEXT = 'single_text'; |
||
15 | |||
16 | /** |
||
17 | * @return string |
||
18 | */ |
||
19 | public static function getBuilderType() |
||
23 | } |
||
24 |