• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/entity/identificator/complex.php
  • Класс: Bitrix\Crm\Entity\Identificator\Complex
  • Вызов: Complex::__construct
public function __construct($entityTypeId, $entityId)
{
	if (!self::validateId($entityTypeId))
	{
		throw new ArgumentNullException('$entityTypeId');
	}
	if (!self::validateId($entityId))
	{
		throw new ArgumentNullException('$entityId');
	}

	$this->typeId = (int) $entityTypeId;
	$this->id = (int) $entityId;
}