X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Futils%2Fiterators%2FIteratorDecorator.php;h=c1b50207f9e7d86883948cbdb2e2600862f11923;hb=35f61c7c4b38388dc498f898193f1dda0461e0b3;hp=288a3113209d4ef8aca086e6997847e517795210;hpb=d33053b3fe5382333bd1514ad298ab02748973a2;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/utils/iterators/IteratorDecorator.php b/includes/utils/iterators/IteratorDecorator.php index 288a311320..c1b50207f9 100644 --- a/includes/utils/iterators/IteratorDecorator.php +++ b/includes/utils/iterators/IteratorDecorator.php @@ -37,11 +37,11 @@ abstract class IteratorDecorator implements Iterator { } public function next() { - return $this->iterator->next(); + $this->iterator->next(); } public function rewind() { - return $this->iterator->rewind(); + $this->iterator->rewind(); } public function valid() {