for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/* For licensing terms, see /license.txt */
/**
* MatchingCombination.
*/
class MatchingCombination extends Matching
{
public $typePicture = 'matching_co.png';
public $explanationLangVar = 'Matching Combination';
* Constructor.
public function __construct()
parent::__construct();
$this->type = MATCHING_COMBINATION;
$this->isContent = $this->getIsContent();
}