• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/cashbox/cashboxrest.php
  • Класс: BitrixSaleCashboxCashboxRest
  • Вызов: CashboxRest::getRequestOptions
private function getRequestOptions(): array
{
	$options = [];

	$handlerCode = $this->getHandlerCode();
	$handlerParams = self::getHandlerParams($handlerCode);
	if (isset($handlerParams['SETTINGS']['HTTP_VERSION']))
	{
		$options['HTTP_CLIENT_OPTIONS'] = [
			'version' => $handlerParams['SETTINGS']['HTTP_VERSION'],
		];
	}

	return $options;
}