• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/V2/Chat/NullChat.php
  • Класс: BitrixImV2ChatNullChat
  • Вызов: NullChat::createChatIfNotExists
public function createChatIfNotExists(array $params): self
{
	$params = array_merge($this->preparedParams, $params);

	$addResult = ChatFactory::getInstance()->addChat($params);
	if (!$addResult->isSuccess() || !$addResult->hasResult())
	{
		return $this;
	}

	return $addResult->getResult()['CHAT'];
}