Methods

Return the supertypes for this class

getClassSupertypes(string $class) : string[]

abstract

Parameters

$class

string

Returns

string[]

Retrieves classes in this definition

getClasses() : string[]

abstract

Returns

string[]

getInstantiator()

getInstantiator(string $class) : string | array

abstract

Parameters

$class

string

Returns

stringarray

getMethodParameters() return information about a methods parameters.

getMethodParameters(string $class, string $method) : array

Should return an ordered named array of parameters for a given method. Each value should be an array, of length 4 with the following information:

array( 0, // string|null: Type Name (if it exists) 1, // bool: whether this param is required 2, // string: fully qualified path to this parameter 3, // mixed: default value );

abstract

Parameters

$class

string

$method

string

Returns

array

Return an array of the injection methods for a given class

getMethods(string $class) : string[]

abstract

Parameters

$class

string

Returns

string[]

Return whether the class exists in this definition

hasClass(string $class) : bool

abstract

Parameters

$class

string

Returns

bool

hasMethod()

hasMethod(string $class, string $method) : bool

abstract

Parameters

$class

string

$method

string

Returns

bool

hasMethodParameters()

hasMethodParameters($class, $method) : bool

abstract

Parameters

$class

$method

Returns

bool

Return if there are injection methods

hasMethods(string $class) : bool

abstract

Parameters

$class

string

Returns

bool