From b0f5c889fe942e41074e803dffde925ee86d023d Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Sat, 2 Feb 2008 22:56:25 +0000 Subject: [PATCH] - Add new classes --- ext/spl/php_spl.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ext/spl/php_spl.c b/ext/spl/php_spl.c index 3f0df658fa..b831287827 100755 --- a/ext/spl/php_spl.c +++ b/ext/spl/php_spl.c @@ -158,7 +158,9 @@ PHP_FUNCTION(class_implements) SPL_ADD_CLASS(DirectoryIterator, z_list, sub, allow, ce_flags); \ SPL_ADD_CLASS(DomainException, z_list, sub, allow, ce_flags); \ SPL_ADD_CLASS(EmptyIterator, z_list, sub, allow, ce_flags); \ + SPL_ADD_CLASS(FilesystemIterator, z_list, sub, allow, ce_flags); \ SPL_ADD_CLASS(FilterIterator, z_list, sub, allow, ce_flags); \ + SPL_ADD_CLASS(GlobIterator, z_list, sub, allow, ce_flags); \ SPL_ADD_CLASS(InfiniteIterator, z_list, sub, allow, ce_flags); \ SPL_ADD_CLASS(InvalidArgumentException, z_list, sub, allow, ce_flags); \ SPL_ADD_CLASS(IteratorIterator, z_list, sub, allow, ce_flags); \ -- 2.50.1