Conditions | 1 |
Paths | 1 |
Total Lines | 27 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
33 | protected function buildForm() |
||
34 | { |
||
35 | $this->formBuilder |
||
36 | ->add( |
||
37 | 'rewrite-id', |
||
38 | 'integer', |
||
39 | array( |
||
40 | 'required' => true |
||
41 | ) |
||
42 | ) |
||
43 | ->add( |
||
44 | 'select-reassign', |
||
45 | 'text', |
||
46 | array( |
||
47 | 'constraints' => array(new NotBlank()), |
||
48 | 'required' => true |
||
49 | ) |
||
50 | ) |
||
51 | ->add( |
||
52 | 'all', |
||
53 | 'integer', |
||
54 | array( |
||
55 | 'required' => true |
||
56 | ) |
||
57 | ) |
||
58 | ; |
||
59 | } |
||
60 | } |
||
61 |