| Conditions | 1 |
| Paths | 1 |
| Total Lines | 28 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | public function buildForm(FormBuilderInterface $builder, array $options) |
||
| 23 | { |
||
| 24 | $builder |
||
| 25 | ->add( |
||
| 26 | 'support_admin_comment', TextareaType::class, [ |
||
| 27 | 'attr' => [ |
||
| 28 | 'maxlength' => '32000', |
||
| 29 | 'overflow' => 'auto', |
||
| 30 | 'rows' => '10', |
||
| 31 | ], |
||
| 32 | 'required' => false, |
||
| 33 | 'disabled' => false, |
||
| 34 | 'label' => false, |
||
| 35 | 'trim' => true |
||
| 36 | ] |
||
| 37 | ) |
||
| 38 | ->add( |
||
| 39 | 'save_admin_comment', SubmitType::class, [ |
||
| 40 | 'attr' => ['class' => 'btn btn-primary', 'style' => 'width: 180px;'], |
||
| 41 | 'label' => '💾' |
||
| 42 | ] |
||
| 43 | ) |
||
| 44 | ->add( |
||
| 45 | 'hidden_repID', HiddenType::class, [ |
||
| 46 | 'attr' => ['maxlength' => '10'], |
||
| 47 | ] |
||
| 48 | ); |
||
| 49 | } |
||
| 50 | } |
||
| 51 |