Completed
Push — master ( fe7356...a49db1 )
by Jeroen
14:06 queued 10s
created

FormBundle/Form/FileFormSubmissionType.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\FileType;
7
use Symfony\Component\Form\FormBuilderInterface;
8
use Symfony\Component\OptionsResolver\OptionsResolver;
9
10
/**
11
 * This class represents the type for the file FileFormSubmissionField
12
 */
13 View Code Duplication
class FileFormSubmissionType 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
    /**
16
     * @param FormBuilderInterface $builder The form builder
17
     * @param array                $options An array with options
18
     */
19 1
    public function buildForm(FormBuilderInterface $builder, array $options)
20
    {
21 1
        if (isset($options['value_constraints']) && !empty($options['value_constraints'])) {
22
            $options['constraints'] = $options['value_constraints'];
23 1
        }
24 1
25
        $keys = array_fill_keys(['label', 'required', 'constraints'], null);
26 1
        $fieldOptions = array_filter(
27 1
            array_replace($keys, array_intersect_key($options, $keys)),
28
            function ($v) {
29 1
                return isset($v);
30
            }
31 1
        );
32 1
33
        $builder->add('file', FileType::class, $fieldOptions);
34 1
    }
35
36
    public function configureOptions(OptionsResolver $resolver)
37
    {
38
        $resolver->setDefaults(
39 1
            [
40
                'data_class' => 'Kunstmaan\FormBundle\Entity\FormSubmissionFieldTypes\FileFormSubmissionField',
41 1
                'value_constraints' => [],
42
            ]
43
        );
44
    }
45
46
    /**
47
     * @return string
48
     */
49
    public function getBlockPrefix()
50
    {
51
        return 'kunstmaan_formbundle_fileformsubmissiontype';
52
    }
53
}
54