• Модуль: location
  • Путь к файлу: ~/bitrix/modules/location/lib/repository/addressrepository.php
  • Класс: BitrixLocationRepositoryAddressRepository
  • Вызов: AddressRepository::delete
public function delete(int $addressId)
{
	if($addressId <= 0)
	{
		throw new ArgumentNullException('Address Id');
	}

	$result = $this->tableClass::delete($addressId);
	$this->fieldTableClass::deleteByAddressId($addressId);
	$this->linkTableClass::deleteByAddressId($addressId);
	return $result;
}