Pinq\Analysis\TypeSystem::getObjectType PHP Method

getObjectType() public method

public getObjectType ( $classType )
    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];
    }