UserSearchType   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
c 0
b 0
f 0
lcom 0
cbo 2
dl 0
loc 13
ccs 3
cts 3
cp 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A buildForm() 0 6 1
1
<?php
2
3
namespace Skobkin\Bundle\PointToolsBundle\Form;
4
5
use Symfony\Component\Form\AbstractType;
6
use Symfony\Component\Form\FormBuilderInterface;
7
8
class UserSearchType extends AbstractType
9
{
10
    /**
11
     * @param FormBuilderInterface $builder
12
     * @param array $options
13
     */
14 4
    public function buildForm(FormBuilderInterface $builder, array $options)
15
    {
16
        $builder
17 4
            ->add('login')
18
        ;
19 4
    }
20
}
21