IContainer
interface IContainer implements IComponent
Defines functionality for objects that can contain other components.
Methods
void
IComponent|null
getComponent(string $name)
Returns component specified by name or path.
iterable
getComponents()
Returns immediate child components.
Details
at line 22
IContainer
addComponent(IComponent $component, string|null $name)
Adds the component to the container.
at line 27
void
removeComponent(IComponent $component)
Removes the component from the container.
at line 33
IComponent|null
getComponent(string $name)
Returns component specified by name or path.
at line 39
iterable
getComponents()
Returns immediate child components.