• Модуль: rpa
  • Путь к файлу: ~/bitrix/modules/rpa/lib/controller/base.php
  • Класс: BitrixRpaControllerBase
  • Вызов: Base::removeDotsFromValues
protected function removeDotsFromValues(array $data): array
{
	$result = [];

	foreach ($data as $name => $value)
	{
		if (is_array($value))
		{
			$value = $this->removeDotsFromValues($value);
		}
		$result[$name] = $value;
	}

	return $result;
}