Skip to content

Commit f634600

Browse files
committed
minor symfony#3531 Remove horizontal scrolling in code block (ifdattic)
This PR was merged into the 2.4 branch. Discussion ---------- Remove horizontal scrolling in code block | Q | A | ------------- | --- | Doc fix? | yes | New docs? | no | Applies to | 2.4 | Fixed tickets | Commits ------- 4419aad Remove horizontal scrolling in code block
2 parents 9676f2c + 4419aad commit f634600

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

components/expression_language/caching.rst

+3-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ Both ``evaluate()`` and ``compile()`` can handle ``ParsedExpression`` and
6363
use Symfony\Component\ExpressionLanguage\SerializedParsedExpression;
6464
// ...
6565
66-
$expression = new SerializedParsedExpression(serialize($language->parse('1 + 4')));
66+
$expression = new SerializedParsedExpression(
67+
serialize($language->parse('1 + 4'))
68+
);
6769
6870
echo $language->evaluate($expression); // prints 5
6971

0 commit comments

Comments
 (0)