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 fd9f19e

Browse filesBrowse files
committed
minor symfony#7068 Remove double spaces in some YAML configuration (michaelperrin)
This PR was merged into the 2.7 branch. Discussion ---------- Remove double spaces in some YAML configuration That makes things easier when copying and pasting ;) There will be some conflicts when merging on the master branch. I can rebase and open an other PR on an other branch if needed. Commits ------- d60d6c2 Remove double spaces in some YAML configuration
2 parents 0b9dc4d + d60d6c2 commit fd9f19e
Copy full SHA for fd9f19e

File tree

Expand file treeCollapse file tree

3 files changed

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

3 files changed

+8
-8
lines changed

‎console/commands_as_services.rst

Copy file name to clipboardExpand all lines: console/commands_as_services.rst
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ with ``console.command``:
3030
app.command.my_command:
3131
class: AppBundle\Command\MyCommand
3232
tags:
33-
- { name: console.command }
33+
- { name: console.command }
3434
3535
.. code-block:: xml
3636
@@ -137,7 +137,7 @@ inject the ``command.default_name`` parameter:
137137
class: AppBundle\Command\MyCommand
138138
arguments: ["%command.default_name%"]
139139
tags:
140-
- { name: console.command }
140+
- { name: console.command }
141141
142142
.. code-block:: xml
143143

‎security/securing_services.rst

Copy file name to clipboardExpand all lines: security/securing_services.rst
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ the :ref:`sidebar <securing-services-annotations-sidebar>` below):
157157
newsletter_manager:
158158
class: AppBundle\Newsletter\NewsletterManager
159159
tags:
160-
- { name: security.secure_service }
160+
- { name: security.secure_service }
161161
162162
.. code-block:: xml
163163

‎service_container/tags.rst

Copy file name to clipboardExpand all lines: service_container/tags.rst
+5-5Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ to be used for a specific purpose. Take the following example:
2020
class: AppBundle\Extension\FooExtension
2121
public: false
2222
tags:
23-
- { name: twig.extension }
23+
- { name: twig.extension }
2424
2525
.. code-block:: xml
2626
@@ -146,12 +146,12 @@ For example, you may add the following transports as services:
146146
class: \Swift_SmtpTransport
147147
arguments: ['%mailer_host%']
148148
tags:
149-
- { name: app.mail_transport }
149+
- { name: app.mail_transport }
150150
151151
app.sendmail_transport:
152152
class: \Swift_SendmailTransport
153153
tags:
154-
- { name: app.mail_transport }
154+
- { name: app.mail_transport }
155155
156156
.. code-block:: xml
157157
@@ -290,12 +290,12 @@ To answer this, change the service declaration:
290290
class: \Swift_SmtpTransport
291291
arguments: ['%mailer_host%']
292292
tags:
293-
- { name: app.mail_transport, alias: foo }
293+
- { name: app.mail_transport, alias: foo }
294294
295295
app.sendmail_transport:
296296
class: \Swift_SendmailTransport
297297
tags:
298-
- { name: app.mail_transport, alias: bar }
298+
- { name: app.mail_transport, alias: bar }
299299
300300
.. code-block:: xml
301301

0 commit comments

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