Skip to content

Commit

Permalink
remove dd() (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
svenluijten authored and rap2hpoutre committed Apr 6, 2018
1 parent 06973a9 commit 1d2cfdd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/FastExcel.php
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,6 @@ public function import($path)
}
if (($count_header ?? 0) > $count_row = count($row)) {
$row = array_merge($row, array_fill(0, $count_header - $count_row, null));
dd($row, $headers);
}
$collection[] = array_combine($headers, $row);
}
Expand Down Expand Up @@ -211,4 +210,4 @@ private function setOptions(&$reader_or_writer)
}
}
}
}
}

0 comments on commit 1d2cfdd

Please sign in to comment.