Skip to content

Commit

Permalink
Fixing a bad merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
weaverryan committed Apr 11, 2013
1 parent 3227cf2 commit 2e7d5aa
Showing 1 changed file with 4 additions and 25 deletions.
29 changes: 4 additions & 25 deletions components/dependency_injection/parentservices.rst
Original file line number Diff line number Diff line change
Expand Up @@ -312,26 +312,15 @@ to the ``NewsletterManager`` class, the config would look like this:
mail_manager:
abstract: true
calls:
<<<<<<< HEAD
- [ setMailer, [ @my_mailer ] ]
- [ setEmailFormatter, [ @my_email_formatter] ]

=======
- [setMailer, ["@my_mailer"]]
- [setEmailFormatter, ["@my_email_formatter"]]

>>>>>>> e1ae126cb094754b7f4e72bbdb4388fed7f2d188
newsletter_manager:
class: "%newsletter_manager.class%"
parent: mail_manager
calls:
<<<<<<< HEAD
- [ setMailer, [ @my_alternative_mailer ] ]

=======
- [setMailer, ["@my_alternative_mailer"]]

>>>>>>> e1ae126cb094754b7f4e72bbdb4388fed7f2d188
greeting_card_manager:
class: "%greeting_card_manager.class%"
parent: mail_manager
Expand Down Expand Up @@ -450,24 +439,14 @@ If you had the following config:
mail_manager:
abstract: true
calls:
<<<<<<< HEAD
- [ setFilter, [ @my_filter ] ]

=======
- [setFilter, ["@my_filter"]]

>>>>>>> e1ae126cb094754b7f4e72bbdb4388fed7f2d188
newsletter_manager:
class: "%newsletter_manager.class%"
parent: mail_manager
calls:
<<<<<<< HEAD
- [ setFilter, [ @another_filter ] ]

=======
- [setFilter, ["@another_filter"]]

>>>>>>> e1ae126cb094754b7f4e72bbdb4388fed7f2d188
.. code-block:: xml
<parameters>
Expand Down

0 comments on commit 2e7d5aa

Please sign in to comment.