IContainer
interface IContainer implements IComponent
Containers are objects that logically contain zero or more IComponent components.
Methods
void
IComponent|null
getComponent($name)
Returns single component.
getComponents($deep = false, $filterType = null)
Iterates over a components.
Details
at line 23
IContainer
addComponent(IComponent $component, $name)
Adds the specified component to the IContainer.
at line 30
void
removeComponent(IComponent $component)
Removes a component from the IContainer.
at line 37
IComponent|null
getComponent($name)
Returns single component.
at line 45
Iterator
getComponents($deep = false, $filterType = null)
Iterates over a components.