• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/core/base/map.php
  • Класс: BitrixCalendarCoreBaseMap
  • Вызов: Map::addItems
public function addItems(array $items): Collection
{
	// $this->collection = array_replace($this->collection, $items);

	$this->collection = $this->collection + $items;
	return $this;
}