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 16bac79 commit 0553c1bCopy full SHA for 0553c1b
src/SheetModel.php
@@ -65,11 +65,11 @@ public function loadFromSheet(): array
65
66
// append empty cols inside the row to match the number of cols in header
67
foreach ($headers as $index => $header) {
68
- if (! isset($row[$index])) {
69
- $row[$index] = "";
+ if (!isset($row[$index])) {
+ $row[$index] = '';
70
}
71
72
-
+
73
$rows->push($headers->combine($row));
74
});
75
0 commit comments