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

MatchingDraggableCombination::__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
 * MatchingDraggableCombination.
6
 */
7
class MatchingDraggableCombination extends MatchingDraggable
8
{
9
    public $typePicture = 'matchingdrag_co.png';
10
    public $explanationLangVar = 'Matching Draggable Combination';
11
12
    /**
13
     * Constructor.
14
     */
15
    public function __construct()
16
    {
17
        parent::__construct();
18
        $this->type = MATCHING_DRAGGABLE_COMBINATION;
19
        $this->isContent = $this->getIsContent();
20
    }
21
}
22