• Модуль: messageservice
  • Путь к файлу: ~/bitrix/modules/messageservice/lib/Providers/CacheManager.php
  • Класс: BitrixMessageServiceProvidersCacheManager
  • Вызов: CacheManager::getValue
public function getValue(string $entityId): array
{
	$result = [];
	if ($this->cache->initCache(self::CACHE_TTL, $entityId, $this->getCacheDir()))
	{
		$result = $this->cache->getVars();
	}

	return $result;
}