diff options
author | Felipe Pena <felipe@php.net> | 2009-05-01 01:55:41 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2009-05-01 01:55:41 +0000 |
commit | f55c56b74bdd374025fa5532732c37cb2941e81a (patch) | |
tree | 2adadc1faf54f0ffa075d2e5d273060e718e9c23 | |
parent | 8f9c7574c627d0caa5c189cd3113d8b21cb15530 (diff) | |
download | php-git-f55c56b74bdd374025fa5532732c37cb2941e81a.tar.gz |
- MFH: Fixed bug #48120 (Implementing abstract class FilterIterator in regexiterator.inc)
-rwxr-xr-x | ext/spl/internal/regexiterator.inc | 4 |
1 files 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 +?> |