ILIAS
trunk Revision v11.0_alpha-2662-g519ff7d528f
◀ ilDoc Overview
ImmutableMapWrapper.php
Go to the documentation of this file.
1
<?php
2
19
namespace
ILIAS\FileUpload\Collection
;
20
33
final
class
ImmutableMapWrapper
implements
ImmutableStringMap
34
{
42
public
function
__construct
(
private
StringMap
$map)
43
{
44
}
45
46
50
public
function
get
(
string
$key):
string
51
{
52
return
$this->map->get($key);
53
}
54
55
59
public
function
toArray
(): array
60
{
61
return
$this->map->toArray();
62
}
63
64
68
public
function
has
(
string
$key): bool
69
{
70
return
$this->map->has($key);
71
}
72
}
ILIAS\FileUpload\Collection
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
EntryLockingStringMap.php:19
ILIAS\Export\ImportHandler\Parser\NodeInfo\Collection\StringMap
Class StringMap.
Definition:
StringMap.php:33
ILIAS\Export\ImportHandler\Parser\NodeInfo\Collection\ImmutableMapWrapper\__construct
__construct(private StringMap $map)
ImmutableMapWrapper constructor.
Definition:
ImmutableMapWrapper.php:42
ILIAS\Export\ImportHandler\Parser\NodeInfo\Collection\ImmutableStringMap
Class ImmutableStringMap.
Definition:
ImmutableStringMap.php:34
ILIAS\Export\ImportHandler\Parser\NodeInfo\Collection\ImmutableMapWrapper\toArray
toArray()
Definition:
ImmutableMapWrapper.php:59
ILIAS\Export\ImportHandler\Parser\NodeInfo\Collection\ImmutableMapWrapper
Class ImmutableMapWrapper.
Definition:
ImmutableMapWrapper.php:33
ILIAS\Export\ImportHandler\Parser\NodeInfo\Collection\ImmutableMapWrapper\has
has(string $key)
Definition:
ImmutableMapWrapper.php:68
components
ILIAS
FileUpload
src
Collection
ImmutableMapWrapper.php
Generated on Wed Sep 3 2025 23:03:04 for ILIAS by
1.8.13 (using
Doxyfile
)