fullyQualifiedName = $fullyQualifiedName; parent::__construct($shortName); } public function isSuperTypeOf(Type $type) : TrinaryLogic { $fullyQualifiedObjectType = new ObjectType($this->fullyQualifiedName); return $fullyQualifiedObjectType->isSuperTypeOf($type); } public function getShortName() : string { return $this->getClassName(); } /** * @return class-string */ public function getFullyQualifiedName() : string { return $this->fullyQualifiedName; } }