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

EducationForm   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
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