From: Marcus Boerger Date: Thu, 15 Sep 2005 03:39:17 +0000 (+0000) Subject: - No longer needed (moved into c) X-Git-Tag: php-5.1.0RC2~253 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3fab7a3ed62429646eea5a9d69415098631c19e6;p=php - No longer needed (moved into c) --- diff --git a/ext/spl/examples/recursivefilteriterator.inc b/ext/spl/examples/recursivefilteriterator.inc deleted file mode 100755 index f78abe8a52..0000000000 --- a/ext/spl/examples/recursivefilteriterator.inc +++ /dev/null @@ -1,62 +0,0 @@ -getInnerIterator()->hasChildren(); - } - - /** @return an iterator for the current elements children - * - * @note the returned iterator will be of the same class as $this - */ - function getChildren() - { - if (empty($this->ref)) - { - $this->ref = new ReflectionClass($this); - } - return $this->ref->newInstance($this->getInnerIterator()->getChildren()); - } - - private $ref; -} - -?> \ No newline at end of file