ReflectionUnionType::getTypesReturns the types included in the union type Description
public array ReflectionUnionType::getTypes()
Returns the reflections of types included in the union type. ParametersThis function has no parameters. Return ValuesAn array of ReflectionType objects. Examples
Example #1 ReflectionUnionType::getTypes example The above example will output something similar to:
array(2) {
[0] =>
class ReflectionNamedType#4(0) {
}
[1] =>
class ReflectionNamedType#5(0) {
}
}
See Also
|