Skip to content

Commit 3435331

Browse files
authored
correction: removed extra argument (#21)
Signed-off-by: rahul <[email protected]>
1 parent 97f8cff commit 3435331

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CsvFileHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public function findAndReplaceInCsv(
6565

6666
try {
6767
$count = 0;
68-
foreach ($this->getRows($filename, $headers) as $row) {
68+
foreach ($this->getRows($filename) as $row) {
6969
$count += (!$column)
7070
? $this->replaceKeywordInRow($row, $keyword, $replace)
7171
: $this->replaceKeywordInColumn($row, $column, $keyword, $replace);

0 commit comments

Comments
 (0)