• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/V2/Link/Favorite/FavoriteService.php
  • Класс: BitrixImV2LinkFavoriteFavoriteService
  • Вызов: FavoriteService::getCount
public function getCount(int $chatId): int
{
	$filter = Query::filter()
		->where('CHAT_ID', $chatId)
		->where('AUTHOR_ID', $this->getContext()->getUserId())
	;

	return LinkFavoriteTable::getCount($filter);
}