We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 337790f commit aa41535Copy full SHA for aa41535
src/Component/Csv/Reader/CsvReader.php
@@ -53,7 +53,7 @@ public function getColumnValues(string $columnName): array
53
{
54
$items = [];
55
foreach ($this->getIterator() as $key => $row) {
56
- $items[$key][$columnName] = $row[$columnName];
+ $items[$key] = $row[$columnName];
57
}
58
59
return $items;
0 commit comments