Completed
Push — master ( aba493...5356ed )
by Ruud
315:38 queued 305:00
created

StringFormSubmissionType   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 40
Duplicated Lines 100 %

Coupling/Cohesion

Components 0
Dependencies 3

Test Coverage

Coverage 93.75%

Importance

Changes 0
Metric Value
wmc 5
lcom 0
cbo 3
dl 40
loc 40
ccs 15
cts 16
cp 0.9375
rs 10
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A buildForm() 15 15 3
A configureOptions() 9 9 1
A getBlockPrefix() 4 4 1

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

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
 * The type for the StringFormSubmissionField
12
 */
13 View Code Duplication
class StringFormSubmissionType extends AbstractType
0 ignored issues
show
Duplication introduced by
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 The 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
        }
24
25 1
        $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 1
            }
31
        );
32 1
        $builder->add('value', TextType::class, $fieldOptions);
33 1
    }
34
35 1
    public function configureOptions(OptionsResolver $resolver)
36
    {
37 1
        $resolver->setDefaults(
38
            [
39 1
                'data_class' => 'Kunstmaan\FormBundle\Entity\FormSubmissionFieldTypes\StringFormSubmissionField',
40
                'value_constraints' => [],
41
            ]
42
        );
43 1
    }
44
45
    /**
46
     * @return string
47
     */
48 1
    public function getBlockPrefix()
49
    {
50 1
        return 'kunstmaan_formbundle_stringformsubmissiontype';
51
    }
52
}
53