Skip to content

Commit 4419aad

Browse files
committed
Remove horizontal scrolling in code block
1 parent a45fee8 commit 4419aad

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

components/expression_language/caching.rst

Lines changed: 3 additions & 1 deletion
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)