• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/ical/parser/componentscollection.php
  • Класс: BitrixCalendarICalParserComponentsCollection
  • Вызов: ComponentsCollection::add
public function add(?ParserComponent $component): ComponentsCollection
{
	if ($component === null)
	{
		return $this;
	}

	$this->collection[] = $component;

	return $this;
}