• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/V2/Message/Reaction/ReactionMessages.php
  • Класс: BitrixImV2MessageReactionReactionMessages
  • Вызов: ReactionMessages::toRestFormat
public function toRestFormat(array $option = []): array
{
	$rest = [];
	$option['WITHOUT_OWN_REACTIONS'] = !$this->withOwnReactions;

	foreach ($this as $reactionMessage)
	{
		if ($reactionMessage->haveReactions())
		{
			$rest[] = $reactionMessage->toRestFormat($option);
		}
	}

	return $rest;
}