summaryrefslogtreecommitdiff
path: root/ext/spl/internal/regexiterator.inc
diff options
context:
space:
mode:
authorFelipe Pena <felipe@php.net>2009-05-01 01:55:41 +0000
committerFelipe Pena <felipe@php.net>2009-05-01 01:55:41 +0000
commitf55c56b74bdd374025fa5532732c37cb2941e81a (patch)
tree2adadc1faf54f0ffa075d2e5d273060e718e9c23 /ext/spl/internal/regexiterator.inc
parent8f9c7574c627d0caa5c189cd3113d8b21cb15530 (diff)
downloadphp-git-f55c56b74bdd374025fa5532732c37cb2941e81a.tar.gz
- MFH: Fixed bug #48120 (Implementing abstract class FilterIterator in regexiterator.inc)
Diffstat (limited to 'ext/spl/internal/regexiterator.inc')
-rwxr-xr-xext/spl/internal/regexiterator.inc4
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
+?>