• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/V2/Chat/CommentChat.php
  • Класс: BitrixImV2ChatCommentChat
  • Вызов: CommentChat::setParentChatId
public function setParentChatId(int $parentId): self
{
	if (!$parentId)
	{
		return $this;
	}

	$parentChat = ChatFactory::getInstance()->getChat($parentId);

	if ($parentChat->getType() !== self::IM_TYPE_CHAT)
	{
		return $this;
	}

	$this->parentChat = $parentChat;

	return parent::setParentChatId($parentId);
}