Skip to content

Commit 0553c1b

Browse files
committed
Apply fixes from StyleCI
1 parent 16bac79 commit 0553c1b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/SheetModel.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@ public function loadFromSheet(): array
6565

6666
// append empty cols inside the row to match the number of cols in header
6767
foreach ($headers as $index => $header) {
68-
if (! isset($row[$index])) {
69-
$row[$index] = "";
68+
if (!isset($row[$index])) {
69+
$row[$index] = '';
7070
}
7171
}
72-
72+
7373
$rows->push($headers->combine($row));
7474
});
7575

0 commit comments

Comments
 (0)