The expression yield array(array('foo' ...ll, 'types' => 'test')) returns the type Generator which is incompatible with the documented return type array<mixed,mixed>.
Loading history...
32
['foo' => 'bar'],
33
['baz' => 42],
34
['woof' => new stdClass()],
35
['meow' => null],
36
[
37
'multiple' => 1,
38
'items' => static function () : void {
39
},
40
'with' => new class () {
41
},
42
'different' => null,
43
'types' => 'test',
44
],
45
];
46
}
47
48
/**
49
* @return mixed[]
50
*/
51
public function invalidValidateValuesProvider() : iterable
The expression yield array(array('foo',...tdClass(), 1 => 'zaz')) returns the type Generator which is incompatible with the documented return type array<mixed,mixed>.