From 0382e8ff3621b7c3b03a6f7b0a53ab2d615e5318 Mon Sep 17 00:00:00 2001 From: Felipe Pena Date: Fri, 1 May 2009 01:55:28 +0000 Subject: [PATCH] - Fixed bug #48120 (Implementing abstract class FilterIterator in regexiterator.inc) --- ext/spl/internal/regexiterator.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +?> -- 2.40.0