Completed
Push — develop ( c61561...247dd8 )
by
unknown
17:35 queued 09:17
created

EducationForm::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
c 1
b 0
f 0
dl 0
loc 6
rs 9.4285
cc 1
eloc 4
nc 1
nop 0
1
<?php
2
namespace Cv\Form;
3
4
use Core\Form\SummaryForm;
5
6
class EducationForm extends SummaryForm
7
{
8
9
    protected $baseFieldset = 'EducationFieldset';
10
11
    public function init()
12
    {
13
        $this->setDescription(/*@translate*/ 'Focus on the work experience that gives added weight to your application. Add separate entries for each course. Start from the most recent.');
14
        $this->setIsDescriptionsEnabled(true);
15
        parent::init();
16
    }
17
}
18