Skip to content

Commit e26ae04

Browse files
committed
- MFH Add deprecated/compatibility class for BC
1 parent 9d3ac92 commit e26ae04

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?php
2+
3+
/** @file cachingrecursiveiterator.inc
4+
* @ingroup Examples
5+
* @brief class CachingRecursiveIterator
6+
* @author Marcus Boerger
7+
* @date 2003 - 2005
8+
*
9+
* SPL - Standard PHP Library
10+
*/
11+
12+
/** @ingroup Examples
13+
* @brief Compatibility to PHP 5.0
14+
* @author Marcus Boerger
15+
* @version 1.2
16+
* @deprecated
17+
*
18+
* Class RecursiveCachingIterator was named CachingRecursiveIterator until
19+
* PHP 5.0.6.
20+
*
21+
* @see RecursiveCachingIterator
22+
*/
23+
24+
class CachingRecursiveIterator extends RecursiveCachingIterator
25+
{
26+
}
27+
28+
?>

0 commit comments

Comments
 (0)