• Модуль: location
  • Путь к файлу: ~/bitrix/modules/location/lib/entity/address/addresslink.php
  • Класс: BitrixLocationEntityAddressAddressLink
  • Вызов: AddressLink::__construct
public function __construct(string $entityId, string $entityType)
{
	if($entityId === '')
	{
		throw new ArgumentNullException('entityId');
	}

	if($entityType === '')
	{
		throw new ArgumentNullException('entityType');
	}

	$this->entityId = $entityId;
	$this->entityType = $entityType;
}