Skip to content

Commit 4f964da

Browse files
committed
Fix indentation
1 parent 115a268 commit 4f964da

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/Flynsarmy/CsvSeeder/CsvSeeder.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -112,12 +112,12 @@ private function seedFromCSV($filename, $deliminator = ",")
112112
$row_values = [];
113113

114114
foreach ($header as $key) {
115-
if ($row[$i] === '') {
116-
$row_values[$key] = NULL;
117-
}
118-
else {
119-
$row_values[$key] = $row[$i];
120-
}
115+
if ($row[$i] === '') {
116+
$row_values[$key] = NULL;
117+
}
118+
else {
119+
$row_values[$key] = $row[$i];
120+
}
121121
$i++;
122122
}
123123

0 commit comments

Comments
 (0)