Skip to content

Commit 170af7e

Browse files
committed
- MFH Fix #41109: recursiveiterator.inc says 'implements' Iterator instead of 'extends'
1 parent c60eee7 commit 170af7e

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

NEWS

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
PHP NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
33
?? Apr 2007, PHP 5.2.2RC2
4+
- Fixed bug #41109 (recursiveiterator.inc says "implements" Iterator instead of
5+
"extends"). (Marcus)
46
- Fixed bug #41093 (magic_quotes_gpc ignores first arrays keys). (Arpad, Ilia)
57
- Fixed bug #41083 (mysql_ping() requires MYSQL_OPT_RECONNECT to be set since
68
MySQL 5.0.13). (xiaojb at gmail dot com, Tony)

ext/spl/internal/recursiveiterator.inc

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* @version 1.0
1616
* @since PHP 5.0
1717
*/
18-
interface RecursiveIterator implements Iterator
18+
interface RecursiveIterator extends Iterator
1919
{
2020
/** @return whether the current element has children
2121
*/

ext/spl/internal/seekableiterator.inc

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* to seek on an iterator LimitIterator can use this to efficiently rewind
1919
* to offset.
2020
*/
21-
interface SeekableIterator implements Iterator
21+
interface SeekableIterator extends Iterator
2222
{
2323
/** Seek to an absolute position
2424
*

ext/spl/spl.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@
3232
*
3333
* SPL offers some advanced iterator algorithms:
3434
*
35-
* - interface RecursiveIterator implements Iterator
35+
* - interface RecursiveIterator extends Iterator
3636
* - interface OuterIterator extends Iterator
3737
* - class RecursiveIteratorIterator implements OuterIterator
3838
* - abstract class FilterIterator implements OuterIterator
3939
* - class ParentIterator extends FilterIterator implements RecursiveIterator
40-
* - interface SeekableIterator implements Iterator
40+
* - interface SeekableIterator extends Iterator
4141
* - class LimitIterator implements OuterIterator
4242
* - class CachingIterator implements OuterIterator
4343
* - class RecursiveCachingIterator extends CachingIterator implements RecursiveIterator

0 commit comments

Comments
 (0)