ILIAS
release_5-4 Revision v5.4.26-12-gabc799a52e6
◀ ilDoc Overview
ElementList.php
Go to the documentation of this file.
1
<?
php
2
3
namespace
Sabre\VObject
;
4
5
use
ArrayIterator
;
6
use
LogicException
;
7
18
class
ElementList
extends
ArrayIterator
{
19
20
21
/* {{{ ArrayAccess Interface */
22
31
function
offsetSet
($offset, $value) {
32
33
throw
new
LogicException
(
'You can not add new objects to an ElementList'
);
34
35
}
36
46
function
offsetUnset
($offset) {
47
48
throw
new
LogicException
(
'You can not remove objects from an ElementList'
);
49
50
}
51
52
/* }}} */
53
54
}
LogicException
Sabre\VObject
Definition:
mergeduplicates.php:4
Sabre\VObject\ElementList\offsetUnset
offsetUnset($offset)
Sets an item through ArrayAccess.
Definition:
ElementList.php:46
Sabre\VObject\ElementList\offsetSet
offsetSet($offset, $value)
Sets an item through ArrayAccess.
Definition:
ElementList.php:31
Sabre\VObject\ElementList
VObject ElementList.
Definition:
ElementList.php:18
php
ArrayIterator
libs
composer
vendor
sabre
vobject
lib
ElementList.php
Generated on Thu Feb 27 2025 19:01:30 for ILIAS by
1.8.13 (using
Doxyfile
)