objectiterateable.php in Devel 8.2
File
kint/kint/parsers/custom/objectiterateable.php
View source
<?php
class Kint_Parsers_objectIterateable extends kintParser {
protected function _parse(&$variable) {
if (!KINT_PHP53 || !is_object($variable) || !$variable instanceof Traversable || stripos(get_class($variable), 'zend') !== false) {
return false;
}
$arrayCopy = iterator_to_array($variable, true);
if ($arrayCopy === false) {
return false;
}
$this->value = kintParser::factory($arrayCopy)->extendedValue;
$this->type = 'Iterator contents';
$this->size = count($arrayCopy);
}
}