Skip to content

Commit 22264e4

Browse files
committed
uppercase "dependency injection"
1 parent d76516d commit 22264e4

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

Diff for: 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

Diff for: book/page_creation.rst

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

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

Diff for: book/testing.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -445,8 +445,8 @@ Accessing the Container
445445

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

451451
$container = $client->getContainer();
452452

Diff for: cookbook/bundles/configuration.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ bundle configuration would look like:
117117

118118
.. seealso::
119119

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

123123

Diff for: 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`.

Diff for: 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)