public function getObjectType($classType)
{
$normalizedClassType = $this->normalizeClassName($classType);
$typeId = TypeId::getObject($normalizedClassType);
if (!isset($this->objectTypes[$typeId])) {
$this->objectTypes[$typeId] = $this->buildObjectType($typeId, $normalizedClassType);
}
return $this->objectTypes[$typeId];
}