8000 Remove double spaces in some YAML configuration · symfony/symfony-docs@d60d6c2 · GitHub
[go: up one dir, main page]

Skip to content

Commit d60d6c2

Browse files
committed
Remove double spaces in some YAML configuration
1 parent 80a70b4 commit d60d6c2

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

console/commands_as_services.rst

Lines 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

Lines 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

Lines 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