From: Andrea Faulds Date: Sat, 29 Apr 2017 13:37:35 +0000 (+0100) Subject: Test ReflectionType support of iterable X-Git-Tag: php-7.1.6RC1~48 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9891b9ede225b58c358372c2b7b8603c2c91ac12;p=php Test ReflectionType support of iterable --- diff --git a/ext/reflection/tests/ReflectionType_possible_types.phpt b/ext/reflection/tests/ReflectionType_possible_types.phpt index 55302242be..3b486a60fd 100644 --- a/ext/reflection/tests/ReflectionType_possible_types.phpt +++ b/ext/reflection/tests/ReflectionType_possible_types.phpt @@ -11,6 +11,7 @@ $functions = [ function(): bool {}, function(): array {}, function(): callable {}, + function(): iterable {}, function(): StdClass {} ]; @@ -28,4 +29,5 @@ string(6) "string" string(4) "bool" string(5) "array" string(8) "callable" +string(8) "iterable" string(8) "StdClass"