You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
439 B
22 lines
439 B
![]()
3 years ago
|
<?php
|
||
|
/* For licensing terms, see /license.txt */
|
||
|
|
||
|
/**
|
||
![]()
3 years ago
|
* MatchingCombination.
|
||
![]()
3 years ago
|
*/
|
||
![]()
3 years ago
|
class MatchingCombination extends Matching
|
||
![]()
3 years ago
|
{
|
||
![]()
3 years ago
|
public $typePicture = 'matching_co.png';
|
||
|
public $explanationLangVar = 'MatchingCombination';
|
||
![]()
3 years ago
|
|
||
|
/**
|
||
|
* Constructor.
|
||
|
*/
|
||
|
public function __construct()
|
||
|
{
|
||
|
parent::__construct();
|
||
![]()
3 years ago
|
$this->type = MATCHING_COMBINATION;
|
||
![]()
3 years ago
|
$this->isContent = $this->getIsContent();
|
||
|
}
|
||
|
}
|