Skip to content

Commit 46c6326

Browse files
committed
Build errors
1 parent 005e6f3 commit 46c6326

File tree

7 files changed

+9
-7
lines changed

7 files changed

+9
-7
lines changed

components/dependency_injection/compilation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ methods described in :doc:`/service_container/definitions`.
364364

365365
A common use-case of compiler passes is to search for all service definitions
366366
that have a certain tag in order to process dynamically plug each into some
367-
other service. See the section on :ref:`service tags <components-di-compiler-pass-tags>`
367+
other service. See the section on :ref:`service tags <service-container-compiler-pass-tags>`
368368
for an example.
369369

370370
.. _components-di-separate-compiler-passes:

form/data_transformers.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ Define the form type as a service in your configuration files.
335335
.. tip::
336336

337337
For more information about defining form types as services, read
338-
:ref:`register your form type as a service <form-as-services>`.
338+
:doc:`register your form type as a service </form/form_dependencies>`.
339339

340340
Now, you can easily use your ``TaskType``::
341341

form/rendering.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ the other functions do?
4242

4343
The majority of the work is done by the ``form_row`` helper, which renders
4444
the label, errors and HTML form widget of each field inside a ``div`` tag by
45-
default. In the :ref:`form-theming` section, you'll learn how the ``form_row``
45+
default. In the :doc:`/form/form_themes` section, you'll learn how the ``form_row``
4646
output can be customized on many different levels.
4747

4848
.. tip::

form/use_empty_data.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ The point is, you can set ``empty_data`` to the exact "new" object that you want
6868
.. tip::
6969

7070
In order to pass arguments to the ``BlogType`` constructor, you'll need to
71-
:ref:`register it as a service and tag with form.type <form-as-services>`.
71+
:doc:`register it as a service and tag with form.type </form/form_dependencies>`.
7272

7373
Option 2: Provide a Closure
7474
---------------------------

reference/configuration/framework.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1158,7 +1158,7 @@ resources
11581158

11591159
A list of all resources for form theming in PHP. This setting is not required
11601160
if you're using the Twig format for your templates, in that case refer to
1161-
:ref:`the form book chapter <forms-theming-twig>`.
1161+
:ref:`the form book chapter <book-forms-theming-twig>`.
11621162

11631163
Assume you have custom global form themes in
11641164
``src/WebsiteBundle/Resources/views/Form``, you can configure this like:
@@ -1219,7 +1219,7 @@ Assume you have custom global form themes in
12191219

12201220
.. seealso::
12211221

1222-
See :ref:`forms-theming-global` for more information.
1222+
See :ref:`book-forms-theming-global` for more information.
12231223

12241224
.. _reference-templating-cache:
12251225

reference/forms/types/options/cascade_validation.rst.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ the data from ``CategoryType`` to also be validated.
1919
Instead of using this option, it is recommended that you use the :doc:`Valid </reference/constraints/Valid>`
2020
constraint in your model to force validation on a child object stored
2121
on a property. This cascades only the validation but not the use of
22-
the :ref:`validation_groups <book-forms-validation-groups>` option on child forms. You can read more
22+
the :doc:`validation_groups </form/validation_groups>` option on child forms. You can read more
2323
about this in the section about :ref:`Embedding a Single Object <forms-embedding-single-object>`.
2424

2525
.. include:: /reference/forms/types/options/_error_bubbling_hint.rst.inc

service_container/tags.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,8 @@ Notice that each service was given a tag named ``app.mail_transport``. This is
189189
the custom tag that you'll use in your compiler pass. The compiler pass is what
190190
makes this tag "mean" something.
191191

192+
.. _service-container-compiler-pass-tags:
193+
192194
Create a Compiler Pass
193195
~~~~~~~~~~~~~~~~~~~~~~
194196

0 commit comments

Comments
 (0)