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
/**
52
* {@inheritdoc}
53
*/
54
public function getChecks()
55
{
56
if ($this->checks === null) {
57
$this->checks = [];
58
foreach ($this->migrations as $key => $migration) {
59
$check = new ZendDoctrineMigration($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..