• Модуль: crmmobile
  • Путь к файлу: ~/bitrix/modules/crmmobile/lib/Kanban/ItemCounter.php
  • Класс: BitrixCrmMobileKanbanItemCounter
  • Вызов: ItemCounter::getCounter
private function getCounter(string $type, int $value): array
{
	$counters = $this->getCounters();
	if (!isset($counters[$type]))
	{
		throw new ArgumentException('Type ' . $type . ' not known');
	}

	return array_merge($counters[$type], ['value' => $value]);
}