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