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

FillBlanksCombination::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
b 0
f 0
dl 0
loc 5
rs 10
cc 1
nop 0
nc 1
1
<?php
2
/* For licensing terms, see /license.txt */
3
4
/**
5
 * FillBlanksCombination.
6
 */
7
class FillBlanksCombination extends FillBlanks
8
{
9
    public $typePicture = 'fill_in_blanks_co.png';
10
    public $explanationLangVar = 'Fill Blanks Combination';
11
12
    /**
13
     * Constructor.
14
     */
15
    public function __construct()
16
    {
17
        parent::__construct();
18
        $this->type = FILL_IN_BLANKS_COMBINATION;
19
        $this->isContent = $this->getIsContent();
20
    }
21
}
22