Completed
Push — develop ( c61561...247dd8 )
by
unknown
09:15
created

EmploymentForm   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 2
Bugs 0 Features 0
Metric Value
wmc 1
c 2
b 0
f 0
lcom 0
cbo 1
dl 0
loc 12
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 EmploymentForm extends SummaryForm
8
{
9
    
10
    protected $baseFieldset = 'EmploymentFieldset';
11
12
    public function init()
13
    {
14
        $this->setDescription(/*@translate*/' Focus on the work experience that gives added weight to your application.<br>Add separate entries for each experience. Start with the most recent.<br>If your work experience is limited:<ul><li>describe your education and training first</li><li>mention volunteering or (paid/unpaid) work placements which provide evidence of work experience.</li></ul>');
15
        $this->setIsDescriptionsEnabled(true);
16
        parent::init();
17
    }
18
}
19