• Модуль: location
  • Путь к файлу: ~/bitrix/modules/location/lib/entity/generic/collection.php
  • Класс: BitrixLocationEntityGenericCollection
  • Вызов: Collection::offsetSet
public function offsetSet($offset, $value): void
{
	if ($offset === null)
	{
		$this->items[] = $value;
	}
	else
	{
		$this->items[$offset] = $value;
	}
}