23 protected \ReflectionClass
$type;
31 $this->type = new \ReflectionClass($fullyQualifiedClassName);
39 return $this->type->getName();
50 if ($this->type->isSubclassOf($type->
__toString())) {
62 $ancestors = [
new SingleType($class->getName())];
64 while ($class = $class->getParentClass()) {
65 $ancestors[] =
new SingleType($class->getName());
68 return array_reverse($ancestors);
__toString()
string A string representation of the Type.
isExtensionOf(Type $type)
Is this type a subtype of $type.Not strict! x->isExtensionOf(x) == true.
__construct($fullyQualifiedClassName)
SingleType constructor.
equals(Type $otherType)
returns true if the two types are equal.
getAncestors()
returns the hierarchy of this type.E.g. ["AbstractValue", "ScalarValue", "IntegerValue", "UserIdValue"] Type[]
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...