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

	$attendee = array_filter($collection, function ($attendee) {
		return !($attendee instanceof ParserComponent);
	});

	return empty($attendee);
}