Skip to content

Commit

Permalink
Merge pull request #22 from allan-simon/patch-3
Browse files Browse the repository at this point in the history
put double quote around @ in services.yml
  • Loading branch information
paulandrieux authored Sep 22, 2016
2 parents 25ef9a0 + 19d1c04 commit a856a57
Showing 1 changed file with 24 additions and 13 deletions.
37 changes: 24 additions & 13 deletions Resources/config/services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,21 +25,27 @@ services:
appventus_mangopay.user_helper:
class: %appventus_mangopay.user_helper.class%
arguments:
- @appventus_mangopay.mango_api
- @doctrine.orm.entity_manager
- "@appventus_mangopay.mango_api"
- "@doctrine.orm.entity_manager"
- "@event_dispatcher"
appventus_mangopay.bank_information_helper:
class: %appventus_mangopay.bank_information_helper.class%
arguments:
- @appventus_mangopay.mango_api
- @doctrine.orm.entity_manager
- @appventus_mangopay.user_helper
- "@appventus_mangopay.mango_api"
- "@doctrine.orm.entity_manager"
- "@appventus_mangopay.user_helper"
appventus_mangopay.wallet_helper:
class: %appventus_mangopay.wallet_helper.class%
arguments:
- @appventus_mangopay.mango_api
- @appventus_mangopay.user_helper
- @doctrine.orm.entity_manager
- "@appventus_mangopay.mango_api"
- "@appventus_mangopay.user_helper"
- "@doctrine.orm.entity_manager"
- "@event_dispatcher"
appventus_mangopay.card_registration_helper:
class: %appventus_mangopay.card_registration_helper.class%
arguments:
- "@appventus_mangopay.mango_api"
- "@doctrine.orm.entity_manager"
- "@event_dispatcher"
appventus_mangopay.card_registration_helper:
class: %appventus_mangopay.card_registration_helper.class%
Expand All @@ -50,20 +56,25 @@ services:
appventus_mangopay.payment_helper:
class: %appventus_mangopay.payment_helper.class%
arguments:
- @appventus_mangopay.mango_api
- @router
- "@appventus_mangopay.mango_api"
- "@router"
- "@event_dispatcher"

appventus_mangopay.payment_direct_helper:
class: %appventus_mangopay.payment_direct_helper.class%
arguments:
- @appventus_mangopay.mango_api
- @router
- "@appventus_mangopay.mango_api"
- "@router"
- "@event_dispatcher"
appventus_mangopay.bankwire_helper:
class: %appventus_mangopay.bankwire_helper.class%
arguments:
- @appventus_mangopay.mango_api
- "@appventus_mangopay.mango_api"

appventus_mangopay.payment_out_helper:
class: %appventus_mangopay.payment_out_helper.class%
arguments:
- "@appventus_mangopay.mango_api"

appventus_mangopay.payment_out_helper:
class: %appventus_mangopay.payment_out_helper.class%
Expand Down

0 comments on commit a856a57

Please sign in to comment.