Completed
Push — develop ( 247dd8...8739db )
by
unknown
18:23 queued 09:02
created

LanguageSkillForm   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 11
c 1
b 0
f 0
wmc 1
lcom 0
cbo 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A init() 0 6 1
1
<?php
2
3
namespace Cv\Form;
4
5
use Core\Form\SummaryForm;
6
7
class LanguageSkillForm extends SummaryForm
8
{
9
    protected $baseFieldset = 'Cv/LanguageSkillFieldset';
10
11
    public function init()
12
    {
13
        $this->setDescription(/*@translate*/ 'Please select a language and self-assess your level');
14
        $this->setIsDescriptionsEnabled(true);
15
        parent::init();
16
    }
17
}
18