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

LanguageSkillForm::init()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 6
c 1
b 0
f 0
rs 9.4285
cc 1
eloc 4
nc 1
nop 0
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