Skip to content

Commit d64d5d0

Browse files
[ExpressionLanguage] Fix parse error on 5.3
1 parent 3b28719 commit d64d5d0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Tests/ExpressionLanguageTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@ public function testShortCircuitOperatorsCompile($expression, array $names, $exp
9090
*/
9191
public function testParseThrowsInsteadOfNotice()
9292
{
93-
(new ExpressionLanguage())->parse('node.', array('node'));
93+
$expressionLanguage = new ExpressionLanguage();
94+
$expressionLanguage->parse('node.', array('node'));
9495
}
9596

9697
public function shortCircuitProviderEvaluate()

0 commit comments

Comments
 (0)