/var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/src/Collection/Iterator
NameSizeModeActions
BufferedIterator.php47700644editdlrm
ExtractIterator.php29520644editdlrm
FilterIterator.php27390644editdlrm
InsertIterator.php38110644editdlrm
MapReduce.php57540644editdlrm
NestIterator.php22550644editdlrm
NoChildrenIterator.php13680644editdlrm
ReplaceIterator.php28780644editdlrm
SortIterator.php31200644editdlrm
StoppableIterator.php33170644editdlrm
TreeIterator.php34880644editdlrm
TreePrinter.php35180644editdlrm
UnfoldIterator.php26300644editdlrm
ZipIterator.php35840644editdlrm
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/src/Collection/Iterator/NestIterator.php (2255B)
_nestKey = $nestKey; } /** * Returns a traversable containing the children for the current item * * @return \RecursiveIterator */ public function getChildren() { $property = $this->_propertyExtractor($this->_nestKey); return new static($property($this->current()), $this->_nestKey); } /** * Returns true if there is an array or a traversable object stored under the * configured nestKey for the current item * * @return bool */ public function hasChildren(): bool { $property = $this->_propertyExtractor($this->_nestKey); $children = $property($this->current()); if (is_array($children)) { return !empty($children); } return $children instanceof Traversable; } }