From: Felipe Pena Date: Fri, 1 May 2009 01:55:28 +0000 (+0000) Subject: - Fixed bug #48120 (Implementing abstract class FilterIterator in regexiterator.inc) X-Git-Tag: php-5.4.0alpha1~191^2~3794 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0382e8ff3621b7c3b03a6f7b0a53ab2d615e5318;p=php - 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 +?>