interface IComponent

Provides functionality required by all components.

Constants

NAME_SEPARATOR

Separator for component names in path concatenation.

Methods

string|null
getName()

No description

IContainer|null
getParent()

Returns the parent container if any.

setParent(IContainer $parent = null, string $name = null)

Sets the parent of this component.

Details

at line 22
string|null getName()

No description

Return Value

string|null

at line 28
IContainer|null getParent()

Returns the parent container if any.

Return Value

IContainer|null

at line 35
IComponent setParent(IContainer $parent = null, string $name = null)

Sets the parent of this component.

Parameters

IContainer $parent
string $name

Return Value

IComponent