• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/integrity/volatilededupedatasource.php
  • Класс: Bitrix\Crm\Integrity\VolatileDedupeDataSource
  • Вызов: VolatileDedupeDataSource::__construct
public function __construct($typeID, DedupeParams $params)
{
	if(!in_array($typeID, DuplicateVolatileCriterion::getAllSupportedDedupeTypes(), true))
	{
		throw new Main\NotSupportedException(
			"Type(s): '".DuplicateIndexType::resolveName($typeID)."' is not supported in current context"
		);
	}

	parent::__construct($typeID, $params);
}