Add iterable to zend_get_type_by_const()

This commit is contained in:
Aaron Piotrowski 2016-06-03 17:56:13 -05:00
parent 0e221cb3eb
commit 340a00008d

View File

@ -183,6 +183,8 @@ ZEND_API char *zend_get_type_by_const(int type) /* {{{ */
return "null";
case IS_CALLABLE:
return "callable";
case IS_ITERABLE:
return "iterable";
case IS_ARRAY:
return "array";
case IS_VOID: