We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b796c43 + 5cae219 commit 5c296e3Copy full SHA for 5c296e3
src/Parser.php
@@ -143,7 +143,9 @@ private function parseContent(array $raw_lines)
143
foreach ($raw_lines as $raw_line) {
144
$this->line_num++;
145
146
- if ($this->string_helper->startsWith('#', $raw_line) || !$raw_line) {
+ $line = trim($raw_line);
147
+
148
+ if ($this->string_helper->startsWith('#', $line) || !$line) {
149
continue;
150
}
151
tests/mocks/comments.env
@@ -2,6 +2,7 @@
2
TK1 = value # nor should this
3
TK2 = value #this either
4
TK3 = value#thisisnotacomment
5
-TK4 = #or this
+TK4 = #next line consists only of spaces
6
7
# or this TK4 = "value"
- #TK5 = VALUE
8
+ #this line consists of tabs and comment, but the comment doesn't contain key/value assignement
0 commit comments