Skip to content

Commit ca5b203

Browse files
committed
Remove skip line because I cannot think of a valid use case.
1 parent ba8beed commit ca5b203

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

classes/scanner.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ public function scanNextFile() {
9898
}
9999
$file = $_file['value'];
100100

101-
$lines = file($file, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
101+
$lines = file($file, FILE_IGNORE_NEW_LINES);
102102
if ($lines === false) {
103103
$lines = [];
104104
}
@@ -139,4 +139,4 @@ public function getFileExtensions() {
139139
return (array) $this->extensions;
140140
}
141141
}
142-
?>
142+
?>

0 commit comments

Comments
 (0)