• Модуль: location
  • Путь к файлу: ~/bitrix/modules/location/lib/infrastructure/service/config/container.php
  • Класс: BitrixLocationInfrastructureServiceConfigContainer
  • Вызов: Container::get
public function get($id)
{
	if(!$this->has($id))
	{
		throw new LogicException(
			"Sevice configuration container does not contain '{$id}' value",
			ErrorCodes::SERVICE_CONFIG_VALUE_NOT_FOUND
		);
	}

	return $this->configValues[$id];
}