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