We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9676f2c + 4419aad commit f634600Copy full SHA for f634600
components/expression_language/caching.rst
@@ -63,7 +63,9 @@ Both ``evaluate()`` and ``compile()`` can handle ``ParsedExpression`` and
63
use Symfony\Component\ExpressionLanguage\SerializedParsedExpression;
64
// ...
65
66
- $expression = new SerializedParsedExpression(serialize($language->parse('1 + 4')));
+ $expression = new SerializedParsedExpression(
67
+ serialize($language->parse('1 + 4'))
68
+ );
69
70
echo $language->evaluate($expression); // prints 5
71
0 commit comments