Skip to content

Commit 92e726e

Browse files
committed
Fix build errors
1 parent a7ba661 commit 92e726e

23 files changed

+32
-32
lines changed
File renamed without changes.

components/debug.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Enabling them all is as easy as it can get::
3333

3434
The :method:`Symfony\\Component\\Debug\\Debug::enable` method registers an
3535
error handler, an exception handler and
36-
:doc:`a special class loader </components/debug/class_loader>`.
36+
:ref:`a special class loader <component-debug-class-loader>`.
3737

3838
Read the following sections for more information about the different available
3939
tools.
@@ -69,7 +69,7 @@ and more useful::
6969

7070
.. note::
7171

72-
If the :doc:`HttpFoundation component </components/http_foundation` is
72+
If the :doc:`HttpFoundation component </components/http_foundation>` is
7373
available, the handler uses a Symfony Response object; if not, it falls
7474
back to a regular PHP response.
7575

components/routing.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ A full route definition can contain up to seven parts:
9191
are the least commonly needed.
9292

9393
#. A host. This is matched against the host of the request. See
94-
:doc:`/components/routing/hostname_pattern` for more details.
94+
:doc:`/routing/hostname_pattern` for more details.
9595

9696
#. An array of schemes. These enforce a certain HTTP scheme (``http``, ``https``).
9797

@@ -188,8 +188,8 @@ with this class via its constructor::
188188
.. _components-routing-http-foundation:
189189

190190
Normally you can pass the values from the ``$_SERVER`` variable to populate the
191-
:class:`Symfony\\Component\\Routing\\RequestContext`. But If you use the
192-
:doc:`HttpFoundation </components/http_foundation/index>` component, you can use its
191+
:class:`Symfony\\Component\\Routing\\RequestContext`. But if you use the
192+
:doc:`HttpFoundation </components/http_foundation>` component, you can use its
193193
:class:`Symfony\\Component\\HttpFoundation\\Request` class to feed the
194194
:class:`Symfony\\Component\\Routing\\RequestContext` in a shortcut::
195195

components/serializer.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ You can install the component in 2 different ways:
3636

3737
.. include:: /components/require_autoload.rst.inc
3838

39-
To use the ``ObjectNormalizer``, the :doc:`PropertyAccess component </components/property_access/index>`
39+
To use the ``ObjectNormalizer``, the :doc:`PropertyAccess component </components/property_access>`
4040
must also be installed.
4141

4242
Usage
@@ -502,7 +502,7 @@ Normalizers
502502
There are several types of normalizers available:
503503

504504
:class:`Symfony\\Component\\Serializer\\Normalizer\\ObjectNormalizer`
505-
This normalizer leverages the :doc:`PropertyAccess Component </components/property_access/index>`
505+
This normalizer leverages the :doc:`PropertyAccess Component </components/property_access>`
506506
to read and write in the object. It means that it can access to properties
507507
directly and through getters, setters, hassers, adders and removers. It supports
508508
calling the constructor during the denormalization process.

components/templating.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,8 @@ The Templating component can be easily extended via helpers. Helpers are PHP obj
141141
provide features useful in a template context. The component has
142142
2 built-in helpers:
143143

144-
* :doc:`/components/templating/helpers/assetshelper`
145-
* :doc:`/components/templating/helpers/slotshelper`
144+
* :doc:`/components/templating/assetshelper`
145+
* :doc:`/components/templating/slotshelper`
146146

147147
Before you can use these helpers, you need to register them using
148148
:method:`Symfony\\Component\\Templating\\PhpEngine::set`::

components/translation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Loader too. The default loaders are:
9292
* :class:`Symfony\\Component\\Translation\\Loader\\YamlFileLoader` - to load
9393
catalogs from Yaml files (requires the :doc:`Yaml component</components/yaml>`).
9494

95-
All file loaders require the :doc:`Config component </components/config/index>`.
95+
All file loaders require the :doc:`Config component </components/config>`.
9696

9797
You can also :doc:`create your own Loader </components/translation/custom_formats>`,
9898
in case the format is not already supported by one of the default loaders.

configuration/front_controllers_and_kernel.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ to `decorate`_ the kernel with additional features. Examples include:
4545
* Configuring the autoloader or adding additional autoloading mechanisms;
4646
* Adding HTTP level caching by wrapping the kernel with an instance of
4747
:ref:`AppCache <symfony-gateway-cache>`;
48-
* Enabling (or skipping) the :doc:`ClassCache </debugging>`;
48+
* Enabling (or skipping) the :doc:`ClassCache </debug/debugging>`;
4949
* Enabling the :doc:`Debug Component </components/debug>`.
5050

5151
The front controller can be chosen by requesting URLs like:

create_framework/http_foundation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ cases by yourself. Why not using a technology that already works?
281281

282282
If you want to learn more about the HttpFoundation component, you can have
283283
a look at the :namespace:`Symfony\\Component\\HttpFoundation` API or read
284-
its dedicated :doc:`documentation </components/http_foundation/index>`.
284+
its dedicated :doc:`documentation </components/http_foundation>`.
285285

286286
Believe or not but we have our first framework. You can stop now if you want.
287287
Using just the Symfony HttpFoundation component already allows you to write

doctrine/event_listeners_subscribers.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Configuring the Listener/Subscriber
2323
-----------------------------------
2424

2525
To register a service to act as an event listener or subscriber you just have
26-
to :ref:`tag <book-service-container-tags>` it with the appropriate name. Depending
26+
to :doc:`tag </service_container/tags>` it with the appropriate name. Depending
2727
on your use-case, you can hook a listener into every DBAL connection and ORM
2828
entity manager or just into one specific DBAL connection and all the entity
2929
managers that use this connection.

email/testing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Sending emails with Symfony is pretty straightforward thanks to the
88
SwiftmailerBundle, which leverages the power of the `Swift Mailer`_ library.
99

1010
To functionally test that an email was sent, and even assert the email subject,
11-
content or any other headers, you can use :doc:`the Symfony Profiler </profiler/index>`.
11+
content or any other headers, you can use :doc:`the Symfony Profiler </profiler>`.
1212

1313
Start with an easy controller action that sends an email::
1414

0 commit comments

Comments
 (0)