• Модуль: disk
  • Путь к файлу: ~/bitrix/modules/disk/lib/internals/collection/fixedarray.php
  • Класс: BitrixDiskInternalsCollectionFixedArray
  • Вызов: FixedArray::push
public function push($data)
{
	if(isset($this[$this->lastIndexToPush]))
	{
		throw new InvalidOperationException('Could not push data, the element already exists.');
	}

	$this->fixedArray[$this->lastIndexToPush++] = $data;
}