getProperty('attributes'); $attrReflecion->setAccessible(true); $attributes = $attrReflecion->getValue($variable); $reference = '`' . $variable->getConnection()->getDatabaseName() . '`.`' . $variable->getTable() . '`'; $varData->size = count($attributes); if (SageHelper::isRichMode()) { $varData->type = $reflection->getName(); $varData->addTabToView($variable, 'data from ' . $reference, $attributes); } else { $varData->type = $reflection->getName() . '; ' . $reference . ' row data:'; $varData->extendedValue = SageParser::alternativesParse($variable, $attributes); } } }