/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/Collection/Iterator
NameSizeModeActions
BufferedIterator.php56450644editdlrm
ExtractIterator.php29810644editdlrm
FilterIterator.php27390644editdlrm
InsertIterator.php38480644editdlrm
MapReduce.php57540644editdlrm
NestIterator.php22740644editdlrm
NoChildrenIterator.php13870644editdlrm
ReplaceIterator.php29070644editdlrm
SortIterator.php31200644editdlrm
StoppableIterator.php33100644editdlrm
TreeIterator.php34880644editdlrm
TreePrinter.php35470644editdlrm
UnfoldIterator.php26490644editdlrm
ZipIterator.php42380644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/Collection/Iterator/TreePrinter.php (3547B)
_value = $this->_propertyExtractor($valuePath); $this->_key = $this->_propertyExtractor($keyPath); $this->_spacer = $spacer; } /** * Returns the current iteration key * * @return mixed */ #[\ReturnTypeWillChange] public function key() { $extractor = $this->_key; return $extractor($this->_fetchCurrent(), parent::key(), $this); } /** * Returns the current iteration value * * @return string */ public function current(): string { $extractor = $this->_value; $current = $this->_fetchCurrent(); $spacer = str_repeat($this->_spacer, $this->getDepth()); return $spacer . $extractor($current, parent::key(), $this); } /** * Advances the cursor one position * * @return void */ public function next(): void { parent::next(); $this->_current = null; } /** * Returns the current iteration element and caches its value * * @return mixed */ protected function _fetchCurrent() { if ($this->_current !== null) { return $this->_current; } return $this->_current = parent::current(); } }