File tree Expand file tree Collapse file tree 7 files changed +8
-8
lines changed Expand file tree Collapse file tree 7 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -195,7 +195,7 @@ service. Now you have two ways of injecting it in any service or controller:
195195
196196**(1) Use a specific argument name **
197197
198- Type-hint your construtor /method argument with ``HtmlSanitizerInterface `` and name
198+ Type-hint your constructor /method argument with ``HtmlSanitizerInterface `` and name
199199the argument using this pattern: "HTML sanitizer name in camelCase". For example, to
200200inject the ``app.post_sanitizer `` defined earlier, use an argument named ``$appPostSanitizer ``::
201201
Original file line number Diff line number Diff line change @@ -212,7 +212,7 @@ them in any service or controller:
212212
213213**(1) Use a specific argument name **
214214
215- Type-hint your construtor /method argument with ``LockFactory `` and name the
215+ Type-hint your constructor /method argument with ``LockFactory `` and name the
216216argument using this pattern: "lock name in camelCase" + ``LockFactory `` suffix.
217217For example, to inject the ``invoice `` package defined earlier::
218218
Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ them in any service or controller:
200200
201201**(1) Use a specific argument name **
202202
203- Type-hint your construtor /method argument with ``RateLimiterFactoryInterface `` and name
203+ Type-hint your constructor /method argument with ``RateLimiterFactoryInterface `` and name
204204the argument using this pattern: "rate limiter name in camelCase" + ``Limiter `` suffix.
205205For example, to inject the ``anonymous_api `` limiter defined earlier, use an
206206argument named ``$anonymousApiLimiter ``::
Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ them in any service or controller:
178178
179179**(1) Use a specific argument name **
180180
181- Type-hint your construtor /method argument with ``PackageInterface `` and name
181+ Type-hint your constructor /method argument with ``PackageInterface `` and name
182182the argument using this pattern: "asset package name in camelCase". For example,
183183to inject the ``foo_package `` package defined earlier::
184184
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ Overridden Options
3535
3636An active currency is one that is still in use today as `legal tender `_
3737somewhere. This option allows you to show only the currencies that are active
38- at that date:
38+ at that date::
3939
4040 use Symfony\Component\Form\Extension\Core\Type\CurrencyType;
4141
@@ -80,7 +80,7 @@ regardless of their legal tender status.
8080**type **: ``\DateTimeInterface::class `` or ``null `` **default **: ``null ``
8181
8282An inactive currency is one that is a legacy currency, no longer in circulation.
83- This option allows you to show only the currencies that are inactive at that date:
83+ This option allows you to show only the currencies that are inactive at that date::
8484
8585 use Symfony\Component\Form\Extension\Core\Type\CurrencyType;
8686
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ All context options available for the JSON encoder are:
5555The ``CsvEncoder ``
5656------------------
5757
58- The ``CsvEncoder `` encodes to and decodes from CSV. Serveral :ref: `context options <serializer-context >`
58+ The ``CsvEncoder `` encodes to and decodes from CSV. Several :ref: `context options <serializer-context >`
5959are available to customize the behavior of the encoder:
6060
6161``csv_delimiter `` (default: ``, ``)
Original file line number Diff line number Diff line change @@ -431,7 +431,7 @@ injecting each workflow in any service or controller:
431431
432432**(1) Use a specific argument name **
433433
434- Type-hint your construtor /method argument with ``WorkflowInterface `` and name the
434+ Type-hint your constructor /method argument with ``WorkflowInterface `` and name the
435435argument using this pattern: "workflow name in camelCase" + ``Workflow `` suffix.
436436If it is a state machine type, use the ``StateMachine `` suffix.
437437
You can’t perform that action at this time.
0 commit comments