Completed
Pull Request — 5.6 (#2830)
by Jeroen
14:14
created

FormBundle/Form/SubmitButtonPagePartAdminType.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace Kunstmaan\FormBundle\Form;
4
5
use Symfony\Component\Form\AbstractType;
6
use Symfony\Component\Form\Extension\Core\Type\TextType;
7
use Symfony\Component\Form\FormBuilderInterface;
8
use Symfony\Component\OptionsResolver\OptionsResolver;
9
10
/**
11
 * This class represents the type for the SubmitButtonPagePart
12
 */
13 View Code Duplication
class SubmitButtonPagePartAdminType extends AbstractType
0 ignored issues
show
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
14
{
15 1
    public function buildForm(FormBuilderInterface $builder, array $options)
16
    {
17
        $builder
18 1
            ->add('label', TextType::class, [
19 1
                'required' => true,
20
                'label' => 'kuma_form.form.submit_button_page_part.label.label',
21
            ]);
22 1
    }
23
24
    /**
25
     * @return string
26
     */
27 1
    public function getBlockPrefix()
28
    {
29 1
        return 'kunstmaan_formbundle_singlelinetextpageparttype';
30
    }
31
32 1
    public function configureOptions(OptionsResolver $resolver)
33
    {
34 1
        $resolver->setDefaults(['data_class' => 'Kunstmaan\FormBundle\Entity\PageParts\SubmitButtonPagePart']);
35 1
    }
36
}
37