summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schlüter <johannes@php.net>2005-08-24 10:18:15 +0000
committerJohannes Schlüter <johannes@php.net>2005-08-24 10:18:15 +0000
commit11e98efaeba47d3c0e2840fb89422ea8b5a4b1f7 (patch)
tree2c18fca61396ed34acf2c354353d345580d8ba6b
parent4572d1ca93aeee5e70ce17f813309c8c6a841732 (diff)
downloadphp-git-11e98efaeba47d3c0e2840fb89422ea8b5a4b1f7.tar.gz
- MFH: Fix alphabetic order
-rwxr-xr-xext/spl/php_spl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/spl/php_spl.c b/ext/spl/php_spl.c
index 34597b6afb..5509374beb 100755
--- a/ext/spl/php_spl.c
+++ b/ext/spl/php_spl.c
@@ -157,8 +157,8 @@ PHP_FUNCTION(class_implements)
spl_add_classes(&spl_ce_ ## class_name, z_list, sub, allow, ce_flags TSRMLS_CC)
#define SPL_LIST_CLASSES(z_list, sub, allow, ce_flags) \
- SPL_ADD_CLASS(ArrayObject, z_list, sub, allow, ce_flags); \
SPL_ADD_CLASS(ArrayIterator, z_list, sub, allow, ce_flags); \
+ SPL_ADD_CLASS(ArrayObject, z_list, sub, allow, ce_flags); \
SPL_ADD_CLASS(CachingIterator, z_list, sub, allow, ce_flags); \
SPL_ADD_CLASS(CachingRecursiveIterator, z_list, sub, allow, ce_flags); \
SPL_ADD_CLASS(DirectoryIterator, z_list, sub, allow, ce_flags); \