We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b82b125 commit e91db00Copy full SHA for e91db00
src/DatabasePopulator.php
@@ -44,7 +44,7 @@ public function loadRows(string ...$sets): void
44
foreach ($sets as $set) {
45
/**
46
* @psalm-suppress UnresolvableInclude
47
- * @psalm-var array<string, array<string,array>> $data
+ * @psalm-var array<string, list<array<string, mixed>>> $data
48
*/
49
$data = require $this->getRowsFilePath($set);
50
foreach ($data as $table => $rows) {
@@ -57,6 +57,7 @@ public function loadRows(string ...$sets): void
57
58
59
* @param array[] $rows
60
+ * @psalm-param list<array<string,mixed>> $rows
61
62
private function insertRows(string $table, array $rows): void
63
{
0 commit comments