Skip to content

Commit 586d578

Browse files
authored
Update expression_language.rst
Removing `var_dump`, this make no sens here.
1 parent aaf347e commit 586d578

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/expression_language.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ This is how you can use these flags::
123123
$expressionLanguage = new ExpressionLanguage();
124124

125125
// this returns null because the unknown variables and functions are ignored, but don't throw `SyntaxError` exception
126-
var_dump($expressionLanguage->lint('unknown_var + unknown_function()', [], Parser::IGNORE_UNKNOWN_VARIABLES | Parser::IGNORE_UNKNOWN_FUNCTIONS));
126+
$expressionLanguage->lint('unknown_var + unknown_function()', [], Parser::IGNORE_UNKNOWN_VARIABLES | Parser::IGNORE_UNKNOWN_FUNCTIONS);
127127

128128
.. versionadded:: 7.1
129129

0 commit comments

Comments
 (0)