• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/V2/Message/Params.php
  • Класс: BitrixImV2MessageParams
  • Вызов: Params::offsetExists
public function offsetExists($offset): bool
{
	if (
		!parent::offsetExists($offset)
		&& !$this->isLoaded()
		&& $this->getMessageId()
	)
	{
		// lazyload
		$this->loadByMessageId($this->getMessageId());
	}

	return parent::offsetExists($offset);
}