public function beginChildren() { echo "MyIter::beginChildren\n"; parent::beginChildren(); }
function beginChildren() { echo __METHOD__ . "; "; return parent::beginChildren(); }
/** * Begin children * * @return void */ public function beginChildren() { $this->indent += 4; parent::beginChildren(); }
function beginChildren() { echo __METHOD__ . "(" . $this->getDepth() . ")\n"; parent::beginChildren(); }
/** * Called by \RecursiveIteratorIterator when descending */ public function beginChildren() { parent::beginChildren(); $this->call($this->descendCallback); }