summaryrefslogtreecommitdiff
path: root/ext/simplexml/sxe.c
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2017-05-25 12:47:43 +0300
committerDmitry Stogov <dmitry@zend.com>2017-05-25 12:47:43 +0300
commit27e7aea4124ffdecb6d40a2f5723e413a7b40562 (patch)
tree339f9ea525134eafc552fc7f7d4900b0dc656e1f /ext/simplexml/sxe.c
parent44ec732752a99334985759a569814bab05d95051 (diff)
downloadphp-git-27e7aea4124ffdecb6d40a2f5723e413a7b40562.tar.gz
"Countable" interface is moved from SPL to Core
Diffstat (limited to 'ext/simplexml/sxe.c')
-rw-r--r--ext/simplexml/sxe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/simplexml/sxe.c b/ext/simplexml/sxe.c
index e1fbc63872..cb15f007d9 100644
--- a/ext/simplexml/sxe.c
+++ b/ext/simplexml/sxe.c
@@ -211,7 +211,7 @@ PHP_MINIT_FUNCTION(sxe) /* {{{ */
ce_SimpleXMLIterator->create_object = ce_SimpleXMLElement->create_object;
zend_class_implements(ce_SimpleXMLIterator, 1, spl_ce_RecursiveIterator);
- zend_class_implements(ce_SimpleXMLIterator, 1, spl_ce_Countable);
+ zend_class_implements(ce_SimpleXMLIterator, 1, zend_ce_countable);
return SUCCESS;
}