• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/core/mappers/mapper.php
  • Класс: BitrixCalendarCoreMappersMapper
  • Вызов: Mapper::resetCacheById
public function resetCacheById(int $id): self
{
	$map = $this->getCacheMap();
	if ($map->has($id))
	{
		$map->remove($id);
	}

	return $this;
}