File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -215,7 +215,7 @@ service. Now you have two ways of injecting it in any service or controller:
215215
216216**(1) Use a specific argument name **
217217
218- Type-hint your construtor /method argument with ``HtmlSanitizerInterface `` and name
218+ Type-hint your constructor /method argument with ``HtmlSanitizerInterface `` and name
219219the argument using this pattern: "HTML sanitizer name in camelCase". For example, to
220220inject the ``app.post_sanitizer `` defined earlier, use an argument named ``$appPostSanitizer ``::
221221
Original file line number Diff line number Diff line change @@ -296,7 +296,7 @@ them in any service or controller:
296296
297297**(1) Use a specific argument name **
298298
299- Type-hint your construtor /method argument with ``LockFactory `` and name the
299+ Type-hint your constructor /method argument with ``LockFactory `` and name the
300300argument using this pattern: "lock name in camelCase" + ``LockFactory `` suffix.
301301For example, to inject the ``invoice `` package defined earlier::
302302
Original file line number Diff line number Diff line change @@ -238,7 +238,7 @@ them in any service or controller:
238238
239239**(1) Use a specific argument name **
240240
241- Type-hint your construtor /method argument with ``RateLimiterFactoryInterface `` and name
241+ Type-hint your constructor /method argument with ``RateLimiterFactoryInterface `` and name
242242the argument using this pattern: "rate limiter name in camelCase" + ``Limiter `` suffix.
243243For example, to inject the ``anonymous_api `` limiter defined earlier, use an
244244argument named ``$anonymousApiLimiter ``::
Original file line number Diff line number Diff line change @@ -282,7 +282,7 @@ them in any service or controller:
282282
283283**(1) Use a specific argument name **
284284
285- Type-hint your construtor /method argument with ``PackageInterface `` and name
285+ Type-hint your constructor /method argument with ``PackageInterface `` and name
286286the argument using this pattern: "asset package name in camelCase". For example,
287287to inject the ``foo_package `` package defined earlier::
288288
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 @@ -337,7 +337,7 @@ injecting each workflow in any service or controller:
337337
338338**(1) Use a specific argument name **
339339
340- Type-hint your construtor /method argument with ``WorkflowInterface `` and name the
340+ Type-hint your constructor /method argument with ``WorkflowInterface `` and name the
341341argument using this pattern: "workflow name in camelCase" + ``Workflow `` suffix.
342342If it is a state machine type, use the ``StateMachine `` suffix.
343343
You can’t perform that action at this time.
0 commit comments