| Total Complexity | 2 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | final class SectionTranslationType extends AbstractResourceType |
||
| 18 | { |
||
| 19 | public function buildForm(FormBuilderInterface $builder, array $options): void |
||
| 20 | { |
||
| 21 | $builder |
||
| 22 | ->add('name', TextType::class, [ |
||
| 23 | 'label' => 'bitbag_sylius_cms_plugin.ui.name', |
||
| 24 | ]) |
||
| 25 | ; |
||
| 26 | } |
||
| 27 | |||
| 28 | public function getBlockPrefix(): string |
||
| 31 | } |
||
| 32 | } |
||
| 33 |