| Total Complexity | 2 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class SeoType extends AbstractResourceType |
||
| 12 | { |
||
| 13 | public function buildForm(FormBuilderInterface $builder, array $options): void |
||
| 14 | { |
||
| 15 | $builder->add('translations', ResourceTranslationsType::class, [ |
||
| 16 | 'entry_type' => SeoTranslationType::class, |
||
| 17 | 'label' => 'sylius.form.product.translations', |
||
| 18 | ]); |
||
| 19 | } |
||
| 20 | |||
| 21 | public function getBlockPrefix(): string |
||
| 24 | } |
||
| 25 | } |
||
| 26 |