IContainer
interface IContainer implements IComponent
Containers are objects that logically contain zero or more IComponent components.
Methods
void
IComponent|null
getComponent(string $name)
Returns component specified by name or path.
getComponents()
Iterates over descendants components.
Details
at line 24
IContainer
addComponent(IComponent $component, string|null $name)
Adds the component to the container.
at line 29
void
removeComponent(IComponent $component)
Removes the component from the container.
at line 35
IComponent|null
getComponent(string $name)
Returns component specified by name or path.
at line 41
Iterator
getComponents()
Iterates over descendants components.