Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 3a39a76

Browse filesBrowse files
committed
Merge branch '7.2' into 7.3
* 7.2: fix: minor in file `webhook.rst` Fix yaml and xml example syntax error at factories.rst
2 parents bdc7813 + 92f1c4d commit 3a39a76
Copy full SHA for 3a39a76

File tree

Expand file treeCollapse file tree

2 files changed

+3
-3
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+3
-3
lines changed

‎service_container/factories.rst

Copy file name to clipboardExpand all lines: service_container/factories.rst
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ e.g. change the service based on a parameter:
389389
390390
# you can use the arg() function to retrieve an argument from the definition
391391
App\Email\NewsletterManagerInterface:
392-
factory: "@=arg(0).createNewsletterManager() ?: service("default_newsletter_manager")"
392+
factory: '@=arg(0).createNewsletterManager() ?: service("default_newsletter_manager")'
393393
arguments:
394394
- '@App\Email\NewsletterManagerFactory'
395395
@@ -410,7 +410,7 @@ e.g. change the service based on a parameter:
410410
411411
<!-- you can use the arg() function to retrieve an argument from the definition -->
412412
<service id="App\Email\NewsletterManagerInterface">
413-
<factory expression="arg(0).createNewsletterManager() ?: service("default_newsletter_manager")"/>
413+
<factory expression="arg(0).createNewsletterManager() ?: service('default_newsletter_manager')"/>
414414
<argument type="service" id="App\Email\NewsletterManagerFactory"/>
415415
</service>
416416
</services>

‎webhook.rst

Copy file name to clipboardExpand all lines: webhook.rst
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ webhook consumer code.
117117
The webhook routing name is part of the URL you need to configure at the
118118
third-party mailer provider. The URL is the concatenation of your domain name
119119
and the routing name you chose in the configuration (like
120-
``https://example.com/webhook/mailer_mailgun``.
120+
``https://example.com/webhook/mailer_mailgun``).
121121

122122
For Mailgun, you will get a secret for the webhook. Store this secret as
123123
MAILER_MAILGUN_SECRET (in the :doc:`secrets management system

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.