ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
ImmutableMapWrapper.php
Go to the documentation of this file.
1
<?php
2
3
namespace
ILIAS\FileUpload\Collection
;
4
17
final
class
ImmutableMapWrapper
implements
ImmutableStringMap
18
{
19
23
private
$map
;
24
25
33
public
function
__construct
(
StringMap
$map
)
34
{
35
$this->map =
$map
;
36
}
37
38
42
public
function
get
($key)
43
{
44
return
$this->map->get($key);
45
}
46
47
51
public
function
toArray
()
52
{
53
return
$this->map->toArray();
54
}
55
56
60
public
function
has
($key)
61
{
62
return
$this->map->has($key);
63
}
64
}
ILIAS\FileUpload\Collection\ImmutableMapWrapper\has
has($key)
Definition:
ImmutableMapWrapper.php:60
ILIAS\FileUpload\Collection
Definition:
EntryLockingStringMap.php:3
ILIAS\FileUpload\Collection\StringMap
Class StringMap.
Definition:
StringMap.php:17
ILIAS\FileUpload\Collection\ImmutableMapWrapper\$map
$map
Definition:
ImmutableMapWrapper.php:23
ILIAS\FileUpload\Collection\ImmutableMapWrapper\__construct
__construct(StringMap $map)
ImmutableMapWrapper constructor.
Definition:
ImmutableMapWrapper.php:33
ILIAS\FileUpload\Collection\ImmutableStringMap
Class ImmutableStringMap.
Definition:
ImmutableStringMap.php:18
ILIAS\FileUpload\Collection\ImmutableMapWrapper\toArray
toArray()
Definition:
ImmutableMapWrapper.php:51
ILIAS\FileUpload\Collection\ImmutableMapWrapper
Class ImmutableMapWrapper.
Definition:
ImmutableMapWrapper.php:17
src
FileUpload
Collection
ImmutableMapWrapper.php
Generated on Wed Apr 2 2025 21:01:42 for ILIAS by
1.8.13 (using
Doxyfile
)