summaryrefslogtreecommitdiff
path: root/ext/spl/examples/cachingrecursiveiterator.inc
blob: f0e060a0a7a1655db2a8b1854ed46fc8638b2c39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php

/** @file cachingrecursiveiterator.inc
 * @ingroup Examples
 * @brief class CachingRecursiveIterator
 * @author  Marcus Boerger
 * @date    2003 - 2005
 *
 * SPL - Standard PHP Library
 */

/** @ingroup Examples
 * @brief   Compatibility to PHP 5.0
 * @author  Marcus Boerger
 * @version 1.2
 * @deprecated
 *
 * Class RecursiveCachingIterator was named CachingRecursiveIterator until
 * PHP 5.0.6.
 *
 * @see RecursiveCachingIterator
 */

class CachingRecursiveIterator extends RecursiveCachingIterator
{
}

?>