File tree 4 files changed +6
-4
lines changed
4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1
1
PHP NEWS
2
2
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3
3
?? Apr 2007, PHP 5.2.2RC2
4
+ - Fixed bug #41109 (recursiveiterator.inc says "implements" Iterator instead of
5
+ "extends"). (Marcus)
4
6
- Fixed bug #41093 (magic_quotes_gpc ignores first arrays keys). (Arpad, Ilia)
5
7
- Fixed bug #41083 (mysql_ping() requires MYSQL_OPT_RECONNECT to be set since
6
8
MySQL 5.0.13). (xiaojb at gmail dot com, Tony)
Original file line number Diff line number Diff line change 15
15
* @version 1.0
16
16
* @since PHP 5.0
17
17
*/
18
- interface RecursiveIterator implements Iterator
18
+ interface RecursiveIterator extends Iterator
19
19
{
20
20
/** @return whether the current element has children
21
21
*/
Original file line number Diff line number Diff line change 18
18
* to seek on an iterator LimitIterator can use this to efficiently rewind
19
19
* to offset.
20
20
*/
21
- interface SeekableIterator implements Iterator
21
+ interface SeekableIterator extends Iterator
22
22
{
23
23
/** Seek to an absolute position
24
24
*
Original file line number Diff line number Diff line change 32
32
*
33
33
* SPL offers some advanced iterator algorithms:
34
34
*
35
- * - interface RecursiveIterator implements Iterator
35
+ * - interface RecursiveIterator extends Iterator
36
36
* - interface OuterIterator extends Iterator
37
37
* - class RecursiveIteratorIterator implements OuterIterator
38
38
* - abstract class FilterIterator implements OuterIterator
39
39
* - class ParentIterator extends FilterIterator implements RecursiveIterator
40
- * - interface SeekableIterator implements Iterator
40
+ * - interface SeekableIterator extends Iterator
41
41
* - class LimitIterator implements OuterIterator
42
42
* - class CachingIterator implements OuterIterator
43
43
* - class RecursiveCachingIterator extends CachingIterator implements RecursiveIterator
You can’t perform that action at this time.
0 commit comments