ILIAS
release_10 Revision v10.1-43-ga1241a92c2f
◀ 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
}
ILIAS\Component\Dependencies\NullDIC\offsetSet
offsetSet($id, $value)
Definition:
NullDIC.php:29
ILIAS\Component\Dependencies\NullDIC
An object that looks like a Dependency Injection Container but actually does nothing.
Definition:
NullDIC.php:27
ILIAS\Component\Dependencies\NullDIC\offsetUnset
offsetUnset($id)
Definition:
NullDIC.php:43
ILIAS\Component\Dependencies\NullDIC\offsetExists
offsetExists($id)
Definition:
NullDIC.php:38
$id
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition:
plugin.php:24
ILIAS\Component\Dependencies
Definition:
Define.php:21
ILIAS\Component\Dependencies\NullDIC\offsetGet
offsetGet($id)
Definition:
NullDIC.php:33
components
ILIAS
Component
src
Dependencies
NullDIC.php
Generated on Wed Sep 10 2025 15:15:13 for ILIAS by
1.8.13 (using
Doxyfile
)