Skip to content

Commit a045995

Browse files
committed
Fix BOM characters
1 parent 01cdbf5 commit a045995

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

components/dependency_injection/compilation.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. index::
1+
.. index::
22
single: DependencyInjection; Compilation
33

44
Compiling the Container
@@ -523,3 +523,4 @@ have the cache will be considered stale.
523523

524524
In the full-stack framework the compilation and caching of the container
525525
is taken care of for you.
526+

components/dependency_injection/definitions.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. index::
1+
.. index::
22
single: DependencyInjection; Service definitions
33

44
Working with Container Service Definitions
@@ -139,3 +139,4 @@ the service itself gets loaded. To do so, you can use the
139139

140140
Notice that Symfony will internally call the PHP statement ``require_once``,
141141
which means that your file will be included only once per request.
142+

components/dependency_injection/introduction.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. index::
1+
.. index::
22
single: DependencyInjection
33
single: Components; DependencyInjection
44

@@ -285,3 +285,4 @@ config files:
285285
->addMethodCall('setMailer', array(new Reference('mailer')));
286286
287287
.. _Packagist: https://packagist.org/packages/symfony/dependency-injection
288+

components/dependency_injection/tags.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. index::
1+
.. index::
22
single: DependencyInjection; Tags
33

44
Working with Tagged Services
@@ -296,3 +296,4 @@ The double loop may be confusing. This is because a service can have more
296296
than one tag. You tag a service twice or more with the ``acme_mailer.transport``
297297
tag. The second foreach loop iterates over the ``acme_mailer.transport``
298298
tags set for the current service and gives you the attributes.
299+

components/dependency_injection/types.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. index::
1+
.. index::
22
single: DependencyInjection; Injection types
33

44
Types of Injection
@@ -242,3 +242,4 @@ to setter injection but with these additional important problems:
242242
But, it is useful to know that this can be done with the service container,
243243
especially if you are working with code that is out of your control, such
244244
as in a third party library, which uses public properties for its dependencies.
245+

0 commit comments

Comments
 (0)