ILIAS  release_10 Revision v10.1-43-ga1241a92c2f
ILIAS\Component\Dependencies\NullDIC Class Reference

An object that looks like a Dependency Injection Container but actually does nothing. More...

+ Inheritance diagram for ILIAS\Component\Dependencies\NullDIC:
+ Collaboration diagram for ILIAS\Component\Dependencies\NullDIC:

Public Member Functions

 offsetSet ($id, $value)
 
 offsetGet ($id)
 
 offsetExists ($id)
 
 offsetUnset ($id)
 

Detailed Description

An object that looks like a Dependency Injection Container but actually does nothing.

Definition at line 27 of file NullDIC.php.

Member Function Documentation

◆ offsetExists()

ILIAS\Component\Dependencies\NullDIC::offsetExists (   $id)

Definition at line 38 of file NullDIC.php.

38  : false
39  {
40  return false;
41  }

◆ offsetGet()

ILIAS\Component\Dependencies\NullDIC::offsetGet (   $id)

Definition at line 33 of file NullDIC.php.

33  : null
34  {
35  return null;
36  }

◆ offsetSet()

ILIAS\Component\Dependencies\NullDIC::offsetSet (   $id,
  $value 
)

Definition at line 29 of file NullDIC.php.

29  : void
30  {
31  }

◆ offsetUnset()

ILIAS\Component\Dependencies\NullDIC::offsetUnset (   $id)

Definition at line 43 of file NullDIC.php.

43  : void
44  {
45  }

The documentation for this class was generated from the following file: