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

FillBlanksCombination   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 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