Collection::fetchGenerator

  1. Bitrix24 API (v. 23.675.0)
  2. calendar
  3. Collection
  4. fetchGenerator
  • Модуль: 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;
	}
}

Добавить комментарий