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

instanceOfListType() публичный Метод

Returns true if the result property {@link Type getType()} is of TList type or that the actual result object is an instance of TList.
public instanceOfListType ( $target ) : boolean
Результат boolean true if the result object is an instance of TList
    public function instanceOfListType($target)
    {
        if ($this->getType() === null) {
            return TPropertyAccess::get($target, $this->getProperty()) instanceof TList;
        }
        return $this->getPropertyValueType() == self::LIST_TYPE;
    }