interface IocManagerInterface implements IocContainerInterface

Contract for Manager instances that manage dependencies

Methods

mixed
get(string $alias)

Returns the request object with all dependencies

mixed
share($alias)

Turns a dependency into a singleton.

void
setup($alias, $pipeline)

Add a pipeline to to the que for a specific item

Details

in IocContainerInterface at line line 18
mixed get(string $alias)

Returns the request object with all dependencies

Parameters

string $alias

Return Value

mixed

at line line 16
mixed share($alias)

Turns a dependency into a singleton.

Parameters

$alias

Return Value

mixed

at line line 24
void setup($alias, $pipeline)

Add a pipeline to to the que for a specific item

Parameters

$alias
$pipeline

Return Value

void