ILIAS
trunk Revision v11.0_alpha-3011-gc6b235a2e85
◀ ilDoc Overview
NullDIC.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Component\Dependencies
;
22
27
class
NullDIC
implements
\ArrayAccess
28
{
29
public
function
offsetSet
(
$id
, $value): void
30
{
31
}
32
33
public
function
offsetGet
(
$id
): null
34
{
35
return
null
;
36
}
37
38
public
function
offsetExists
(
$id
): false
39
{
40
return
false
;
41
}
42
43
public
function
offsetUnset
(
$id
): void
44
{
45
}
46
}
$id
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition:
plugin.php:23
ILIAS\Component\Dependencies\NullDIC
An object that looks like a Dependency Injection Container but actually does nothing.
Definition:
NullDIC.php:28
ILIAS\Component\Dependencies\NullDIC\offsetUnset
offsetUnset($id)
Definition:
NullDIC.php:43
ILIAS\Component\Dependencies\NullDIC\offsetExists
offsetExists($id)
Definition:
NullDIC.php:38
ILIAS\Component\Dependencies\NullDIC\offsetSet
offsetSet($id, $value)
Definition:
NullDIC.php:29
ILIAS\Component\Dependencies\NullDIC\offsetGet
offsetGet($id)
Definition:
NullDIC.php:33
ILIAS\Component\Dependencies
Definition:
Define.php:21
components
ILIAS
Component
src
Dependencies
NullDIC.php
Generated on Sat Oct 18 2025 23:02:45 for ILIAS by
1.9.4 (using
Doxyfile
)