It seems like $matchers of type array<string,object<Mouf...faces\PickerInterface>> is incompatible with the declared type array<integer,object<Mou...faces\PickerInterface>> of property $matchers.
Our type inference engine has found an assignment to a property that is incompatible
with the declared type of that property.
Either this assignment is in error or the assigned type should be added
to the documentation/type hint for that property..
Loading history...
43
$this->dataSource = $dataSource;
44
$this->params = $params;
45
}
46
47
/**
48
* @return array[]
49
*/
50
public function getData()
51
{
52
$data = [];
53
foreach ($this->dataSource->getData() as $row) {
54
$data [] = array_map(function (PickerInterface $picker) use ($row) {
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..