Skip to content
This repository was archived by the owner on Jan 9, 2025. It is now read-only.

Commit 42e9e0b

Browse files
getColumns bork
Accidentally had values mapped to their keys rather than the keys mapped to their values
1 parent 3890eb0 commit 42e9e0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Row.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public function getColumns(): array
2121
$array = [];
2222

2323
foreach ($this->row as $key => $value) {
24-
$array[$value] = $key;
24+
$array[$key] = $value;
2525
}
2626

2727
return $array;

0 commit comments

Comments
 (0)