diff options
Diffstat (limited to 'ext/reflection')
-rw-r--r-- | ext/reflection/tests/ReflectionType_possible_types.phpt | 2 |
1 files changed, 2 insertions, 0 deletions
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" |