IcsAccessTokenType   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
eloc 5
c 0
b 0
f 0
dl 0
loc 6
ccs 0
cts 3
cp 0
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A buildForm() 0 5 1
1
<?php
2
3
namespace App\Form;
4
5
use Symfony\Component\Form\AbstractType;
6
use Symfony\Component\Form\Extension\Core\Type\TextType;
7
use Symfony\Component\Form\FormBuilderInterface;
8
9
class IcsAccessTokenType extends AbstractType {
10
    public function buildForm(FormBuilderInterface $builder, array $options) {
11
        $builder
12
            ->add('name', TextType::class, [
13
                'label' => 'label.name',
14
                'help' => 'plans.appointments.export.sync.name_help'
15
            ]);
16
    }
17
}