Skip to content

Commit 5c296e3

Browse files
authored
Merge pull request #12 from ohchi/master
Fix skiping lines without key/value assignement.
2 parents b796c43 + 5cae219 commit 5c296e3

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

src/Parser.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,9 @@ private function parseContent(array $raw_lines)
143143
foreach ($raw_lines as $raw_line) {
144144
$this->line_num++;
145145

146-
if ($this->string_helper->startsWith('#', $raw_line) || !$raw_line) {
146+
$line = trim($raw_line);
147+
148+
if ($this->string_helper->startsWith('#', $line) || !$line) {
147149
continue;
148150
}
149151

tests/mocks/comments.env

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
TK1 = value # nor should this
33
TK2 = value #this either
44
TK3 = value#thisisnotacomment
5-
TK4 = #or this
5+
TK4 = #next line consists only of spaces
6+
67
# or this TK4 = "value"
7-
#TK5 = VALUE
8+
#this line consists of tabs and comment, but the comment doesn't contain key/value assignement

0 commit comments

Comments
 (0)