It seems like $migrations of type array<integer,object<Doc...uration\Configuration>> is incompatible with the declared type array<integer,string> of property $migrations.
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...
49
}
50
51
public function getChecks()
52
{
53
if (null === $this->checks) {
54
$this->checks = [];
55
foreach ($this->migrations as $key => $migration) {
56
$check = new LaminasDoctrineMigration($this->container->get($migration));
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..