getClassSupertypes()
getClasses()
getInstantiator()
getMethodParameters()
getMethods()
hasClass()
hasMethod()
hasMethodParameters()
hasMethods()
getClassSupertypes(string $class) : string[]
| abstract |
|---|
string
string[]getClasses() : string[]
| abstract |
|---|
string[]getInstantiator(string $class) : string | array
| abstract |
|---|
string
stringarray
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 |
|---|
string
string
arraygetMethods(string $class) : string[]
| abstract |
|---|
string
string[]hasClass(string $class) : bool
| abstract |
|---|
string
boolhasMethod(string $class, string $method) : bool
| abstract |
|---|
string
string
boolhasMethodParameters($class, $method) : bool
| abstract |
|---|
boolhasMethods(string $class) : bool
| abstract |
|---|
string
bool