Your IP : 172.28.240.42


Current Path : /var/www/html/clients/nkpgkx11.e-nk.ru/bitrix/modules/main/lib/system/
Upload File :
Current File : /var/www/html/clients/nkpgkx11.e-nk.ru/bitrix/modules/main/lib/system/readonlydictionary.php

<?php
namespace Bitrix\Main\System;

class ReadonlyDictionary
	extends Dictionary
{
	/**
	 * Offset to set
	 */
	public function offsetSet($offset, $value)
	{
		throw new \Bitrix\Main\NotSupportedException("Can not set readonly value");
	}

	/**
	 * Offset to unset
	 */
	public function offsetUnset($offset)
	{
		throw new \Bitrix\Main\NotSupportedException("Can not unset readonly value");
	}
}