• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/core/base/collection.php
  • Класс: BitrixCalendarCoreBaseCollection
  • Вызов: Collection::fetchGenerator
protected function fetchGenerator(): ?Generator
{
	if (empty($this->collection))
	{
		return null;
	}

	foreach ($this->collection as $key => $item)
	{
		yield $key => $item;
	}
}