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