• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/V2/Message/Params.php
  • Класс: BitrixImV2MessageParams
  • Вызов: Params::remove
public function remove(string $paramName = ''): self
{
	if (empty($paramName))
	{
		foreach ($this as $paramName => $param)
		{
			unset($this[$paramName]);
		}
		$this->isLoaded = true;
	}
	else
	{
		unset($this[$paramName]);
	}

	return $this;
}