Prado\Data\SqlMap\Configuration\TResultProperty::getPropertyValueType PHP Метод

getPropertyValueType() защищенный Метод

Determines if the type is an instance of \ArrayAccess, TList or an array.
protected getPropertyValueType ( ) : integer
Результат integer TResultProperty::LIST_TYPE or TResultProperty::ARRAY_TYPE
    protected function getPropertyValueType()
    {
        if (class_exists($type = $this->getType(), false)) {
            if ($type === 'TList') {
                return self::LIST_TYPE;
            }
            $class = new ReflectionClass($type);
            if ($class->isSubclassOf('TList')) {
                return self::LIST_TYPE;
            }
            if ($class->implementsInterface('ArrayAccess')) {
                return self::ARRAY_TYPE;
            }
        }
        if (strtolower($type) == 'array') {
            return self::ARRAY_TYPE;
        }
    }