lib: Use @inheritdoc in the TreeNodeIterator

refs #6630
This commit is contained in:
Eric Lippmann 2015-02-10 16:59:43 +01:00
parent b2ace4e209
commit fd38e5b2e1

View File

@ -29,8 +29,7 @@ class TreeNodeIterator implements RecursiveIterator
} }
/** /**
* (non-PHPDoc) * {@inheritdoc}
* @see \RecursiveIterator::current() For the method documentation.
*/ */
public function current() public function current()
{ {
@ -38,8 +37,7 @@ class TreeNodeIterator implements RecursiveIterator
} }
/** /**
* (non-PHPDoc) * {@inheritdoc}
* @see \RecursiveIterator::key() For the method documentation.
*/ */
public function key() public function key()
{ {
@ -47,8 +45,7 @@ class TreeNodeIterator implements RecursiveIterator
} }
/** /**
* (non-PHPDoc) * {@inheritdoc}
* @see \RecursiveIterator::next() For the method documentation.
*/ */
public function next() public function next()
{ {
@ -56,8 +53,7 @@ class TreeNodeIterator implements RecursiveIterator
} }
/** /**
* (non-PHPDoc) * {@inheritdoc}
* @see \RecursiveIterator::rewind() For the method documentation.
*/ */
public function rewind() public function rewind()
{ {
@ -65,8 +61,7 @@ class TreeNodeIterator implements RecursiveIterator
} }
/** /**
* (non-PHPDoc) * {@inheritdoc}
* @see \RecursiveIterator::valid() For the method documentation.
*/ */
public function valid() public function valid()
{ {
@ -74,8 +69,7 @@ class TreeNodeIterator implements RecursiveIterator
} }
/** /**
* (non-PHPDoc) * {@inheritdoc}
* @see \RecursiveIterator::hasChildren() For the method documentation.
*/ */
public function hasChildren() public function hasChildren()
{ {
@ -83,8 +77,8 @@ class TreeNodeIterator implements RecursiveIterator
} }
/** /**
* (non-PHPDoc) * {@inheritdoc}
* @see \RecursiveIterator::getChildren() For the method documentation. * @return TreeNodeIterator
*/ */
public function getChildren() public function getChildren()
{ {