• Модуль: location
  • Путь к файлу: ~/bitrix/modules/location/lib/service/addressservice.php
  • Класс: BitrixLocationServiceAddressService
  • Вызов: AddressService::findById
public function findById(int $addressId)
{
	$result = false;

	try
	{
		$result = $this->repository->findById($addressId);
	}
	catch (RuntimeException $exception)
	{
		$this->processException($exception);
	}

	return $result;
}