File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 40
40
41
41
?>
42
42
--EXPECT--
43
- zend_iterable(): Argument #1 ($arg1) must be of type iterable , string given
44
- zend_iterable(): Argument #1 ($arg1) must be of type iterable , int given
45
- zend_iterable(): Argument #1 ($arg1) must be of type iterable , null given
46
- zend_iterable(): Argument #2 ($arg2) must be of type ?iterable , string given
43
+ zend_iterable(): Argument #1 ($arg1) must be of type Traversable|array , string given
44
+ zend_iterable(): Argument #1 ($arg1) must be of type Traversable|array , int given
45
+ zend_iterable(): Argument #1 ($arg1) must be of type Traversable|array , null given
46
+ zend_iterable(): Argument #2 ($arg2) must be of type Traversable|array|null , string given
47
47
Original file line number Diff line number Diff line change @@ -1319,8 +1319,8 @@ static zend_always_inline zval *zend_try_array_init(zval *zv)
1319
1319
_(Z_EXPECTED_ARRAY_OR_NULL, "of type ?array") \
1320
1320
_(Z_EXPECTED_ARRAY_OR_LONG, "of type array|int") \
1321
1321
_(Z_EXPECTED_ARRAY_OR_LONG_OR_NULL, "of type array|int|null") \
1322
- _(Z_EXPECTED_ITERABLE, "of type iterable ") \
1323
- _(Z_EXPECTED_ITERABLE_OR_NULL, "of type ?iterable ") \
1322
+ _(Z_EXPECTED_ITERABLE, "of type Traversable|array ") \
1323
+ _(Z_EXPECTED_ITERABLE_OR_NULL, "of type Traversable|array|null ") \
1324
1324
_(Z_EXPECTED_FUNC, "a valid callback") \
1325
1325
_(Z_EXPECTED_FUNC_OR_NULL, "a valid callback or null") \
1326
1326
_(Z_EXPECTED_RESOURCE, "of type resource") \
You can’t perform that action at this time.
0 commit comments