Skip to content

Commit

Permalink
Remove skip line because I cannot think of a valid use case.
Browse files Browse the repository at this point in the history
  • Loading branch information
chrishalbert committed Jan 16, 2019
1 parent ba8beed commit ca5b203
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions classes/scanner.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public function scanNextFile() {
}
$file = $_file['value'];

$lines = file($file, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
$lines = file($file, FILE_IGNORE_NEW_LINES);
if ($lines === false) {
$lines = [];
}
Expand Down Expand Up @@ -139,4 +139,4 @@ public function getFileExtensions() {
return (array) $this->extensions;
}
}
?>
?>

0 comments on commit ca5b203

Please sign in to comment.