Passed
Pull Request — master (#6637)
by
unknown
14:37 queued 06:29
created

MultipleAnswerDropdownCombination   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 6
dl 0
loc 12
rs 10
c 1
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
1
<?php
2
/* For licensing terms, see /license.txt */
3
4
/**
5
 * MultipleAnswerDropdownCombination.
6
 */
7
class MultipleAnswerDropdownCombination extends MultipleAnswerDropdown
8
{
9
    public $typePicture = 'mcma_dropdown_co.png';
10
    public $explanationLangVar = 'Multiple Answer Dropdown Combination';
11
    public $question_table_class = 'table table-striped table-hover';
12
13
14
    public function __construct()
15
    {
16
        parent::__construct();
17
18
        $this->type = MULTIPLE_ANSWER_DROPDOWN_COMBINATION;
19
    }
20
}
21