Skip to content

Commit 2cef8a0

Browse files
committed
Add back code that got dropped while resolving conflicts
1 parent c3c707c commit 2cef8a0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Value/Value.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ public static function parseValue(ParserState $oParserState, array $aListDelimit
4444
while (
4545
!($oParserState->comes('}') || $oParserState->comes(';') || $oParserState->comes('!')
4646
|| $oParserState->comes(')')
47-
|| $oParserState->comes('\\'))
47+
|| $oParserState->comes('\\')
48+
|| $oParserState->isEnd())
4849
) {
4950
if (count($aStack) > 0) {
5051
$bFoundDelimiter = false;

0 commit comments

Comments
 (0)