Skip to content

Commit 79d6007

Browse files
committed
uppercase "dependency injection"
1 parent 630d204 commit 79d6007

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

best_practices/introduction.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ Symfony to follow everything. If you are totally new to Symfony, welcome!
6262
Start with :doc:`The Quick Tour </quick_tour/the_big_picture>` tutorial first.
6363

6464
We've deliberately kept this guide short. We won't repeat explanations that
65-
you can find in the vast Symfony documentation, like discussions about dependency
66-
injection or front controllers. We'll solely focus on explaining how to do
65+
you can find in the vast Symfony documentation, like discussions about Dependency
66+
Injection or front controllers. We'll solely focus on explaining how to do
6767
what you already know.
6868

6969
The Application

book/page_creation.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -763,7 +763,7 @@ of the most common elements of a bundle:
763763
Contains the controllers of the bundle (e.g. ``RandomController.php``).
764764

765765
``DependencyInjection/``
766-
Holds certain dependency injection extension classes, which may import service
766+
Holds certain Dependency Injection Extension classes, which may import service
767767
configuration, register compiler passes or more (this directory is not
768768
necessary).
769769

book/testing.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -455,8 +455,8 @@ Accessing the Container
455455

456456
It's highly recommended that a functional test only tests the Response. But
457457
under certain very rare circumstances, you might want to access some internal
458-
objects to write assertions. In such cases, you can access the dependency
459-
injection container::
458+
objects to write assertions. In such cases, you can access the Dependency
459+
Injection Container::
460460

461461
$container = $client->getContainer();
462462

cookbook/routing/service_container_parameters.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,5 +127,5 @@ path):
127127

128128
.. seealso::
129129

130-
For parameter handling within a Dependency Injection class see
130+
For parameter handling within a Dependency Injection Class see
131131
:doc:`/cookbook/configuration/using_parameters_in_dic`.

cookbook/validation/custom_constraint.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,8 @@ Constraint Validators with Dependencies
159159
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
160160

161161
If your constraint validator has dependencies, such as a database connection,
162-
it will need to be configured as a service in the dependency injection
163-
container. This service must include the ``validator.constraint_validator``
162+
it will need to be configured as a service in the Dependency Injection
163+
Container. This service must include the ``validator.constraint_validator``
164164
tag and an ``alias`` attribute:
165165

166166
.. configuration-block::

0 commit comments

Comments
 (0)