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

Remove double spaces in some YAML configuration #7068

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 20, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Remove double spaces in some YAML configuration
  • Loading branch information
michaelperrin committed Oct 19, 2016
commit d60d6c26dc652a04c963a33a58d2fa21948ec837
4 changes: 2 additions & 2 deletions 4 console/commands_as_services.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ with ``console.command``:
app.command.my_command:
class: AppBundle\Command\MyCommand
tags:
- { name: console.command }
- { name: console.command }

.. code-block:: xml

Expand Down Expand Up @@ -137,7 +137,7 @@ inject the ``command.default_name`` parameter:
class: AppBundle\Command\MyCommand
arguments: ["%command.default_name%"]
tags:
- { name: console.command }
- { name: console.command }

.. code-block:: xml

Expand Down
2 changes: 1 addition & 1 deletion 2 security/securing_services.rst
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ the :ref:`sidebar <securing-services-annotations-sidebar>` below):
newsletter_manager:
class: AppBundle\Newsletter\NewsletterManager
tags:
- { name: security.secure_service }
- { name: security.secure_service }
.. code-block:: xml
Expand Down
10 changes: 5 additions & 5 deletions 10 service_container/tags.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ to be used for a specific purpose. Take the following example:
class: AppBundle\Extension\FooExtension
public: false
tags:
- { name: twig.extension }
- { name: twig.extension }
.. code-block:: xml
Expand Down Expand Up @@ -146,12 +146,12 @@ For example, you may add the following transports as services:
class: \Swift_SmtpTransport
arguments: ['%mailer_host%']
tags:
- { name: app.mail_transport }
- { name: app.mail_transport }
app.sendmail_transport:
class: \Swift_SendmailTransport
tags:
- { name: app.mail_transport }
- { name: app.mail_transport }
.. code-block:: xml
Expand Down Expand Up @@ -290,12 +290,12 @@ To answer this, change the service declaration:
class: \Swift_SmtpTransport
arguments: ['%mailer_host%']
tags:
- { name: app.mail_transport, alias: foo }
- { name: app.mail_transport, alias: foo }
app.sendmail_transport:
class: \Swift_SendmailTransport
tags:
- { name: app.mail_transport, alias: bar }
- { name: app.mail_transport, alias: bar }
.. code-block:: xml
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.