Skip to content

Commit 3126628

Browse files
committed
-
1 parent a0c1fc1 commit 3126628

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

_build/redirection_map

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@
538538
/components/security /security
539539
/components/var_dumper/advanced /components/var_dumper#advanced-usage
540540
/components/yaml/yaml_format /reference/formats/yaml
541-
/components/expression_language/syntax /components/expression_language#expression-language-syntax
541+
/components/expression_language/syntax /reference/formats/expression_language
542542
/components/expression_language/extending /components/expression_language#expression-language-extending
543543
/notifier/chatters /notifier#sending-chat-messages
544544
/notifier/texters /notifier#sending-sms

reference/constraints/Expression.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ One way to accomplish this is with the Expression constraint:
140140
141141
The :ref:`expression <reference-constraint-expression-option>` option is the
142142
expression that must return true in order for validation to pass. Learn more
143-
about the :ref:`expression language syntax <expression-language-syntax>`.
143+
about the :doc:`expression language syntax </reference/formats/expression-language>`.
144144

145145
.. sidebar:: Mapping the Error to a Specific Field
146146

@@ -262,7 +262,7 @@ Options
262262

263263
The expression that will be evaluated. If the expression evaluates to a false
264264
value (using ``==``, not ``===``), validation will fail. Learn more about the
265-
:ref:`expression language syntax <expression-language-syntax>`.
265+
:doc:`expression language syntax </reference/formats/expression-language>`.
266266

267267
Depending on how you use the constraint, you have access to different variables
268268
in your expression:

routing.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -415,8 +415,8 @@ arbitrary matching logic:
415415
};
416416
417417
The value of the ``condition`` option is an expression using any valid
418-
:ref:`expression language syntax <expression-language-syntax>` and can use any
419-
of these variables created by Symfony:
418+
:doc:`expression language syntax </reference/formats/expression-language>` and
419+
can use any of these variables created by Symfony:
420420

421421
``context``
422422
An instance of :class:`Symfony\\Component\\Routing\\RequestContext`,

security/expressions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ that method is invented for this example).
3838

3939
.. _security-expression-variables:
4040

41-
The security expression must use any valid :ref:`expression language syntax <expression-language-syntax>`
41+
The security expression must use any valid :doc:`expression language syntax </reference/formats/expression-language>`
4242
and can use any of these variables created by Symfony:
4343

4444
``user``

service_container/expression_language.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ to another service: ``App\Mailer``. One way to do this is with an expression:
7171
->args([expr("service('App\\\\Mail\\\\MailerConfiguration').getMailerMethod()")]);
7272
};
7373
74-
Learn more about the :ref:`expression language syntax <expression-language-syntax>`.
74+
Learn more about the :doc:`expression language syntax </reference/formats/expression-language>`.
7575

7676
In this context, you have access to 2 functions:
7777

0 commit comments

Comments
 (0)