ILIAS
trunk Revision v11.0_alpha-2645-g16283d3b3f8
◀ 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
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:144
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:23
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 Mon Sep 1 2025 23:02:39 for ILIAS by
1.8.13 (using
Doxyfile
)