From: Felipe Pena Date: Fri, 1 May 2009 01:55:52 +0000 (+0000) Subject: - MFH: Fixed bug #48120 (Implementing abstract class FilterIterator in regexiterator... X-Git-Tag: php-5.2.10RC1~145 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4121be50e9fb7f06fe9cbb17a76f578bbde6f7f8;p=php - MFH: Fixed bug #48120 (Implementing abstract class FilterIterator in regexiterator.inc) --- diff --git a/ext/spl/internal/regexiterator.inc b/ext/spl/internal/regexiterator.inc index 6548f911f7..d1ffbb7a1d 100755 --- a/ext/spl/internal/regexiterator.inc +++ b/ext/spl/internal/regexiterator.inc @@ -17,7 +17,7 @@ * * This filter iterator assumes that the inner iterator */ -class RegexIterator implements FilterIterator +class RegexIterator extends FilterIterator { const USE_KEY = 0x00000001; /**< If present in $flags the the key is used rather then the current value. */ @@ -160,4 +160,4 @@ class RegexIterator implements FilterIterator } } -?> \ No newline at end of file +?>