From 19d1c0486e3149f4f66541e9f8b1dd1e2bc2e936 Mon Sep 17 00:00:00 2001 From: Allan Simon Date: Fri, 23 Sep 2016 04:55:38 +0800 Subject: [PATCH] put double quote around @ in services.yml So that to be symfony3 compatible --- Resources/config/services.yml | 39 +++++++++++++++++++++++------------ 1 file changed, 26 insertions(+), 13 deletions(-) diff --git a/Resources/config/services.yml b/Resources/config/services.yml index 66c5116..1e7d820 100644 --- a/Resources/config/services.yml +++ b/Resources/config/services.yml @@ -1,7 +1,9 @@ parameters: appventus_mangopay.mango_api.class: "AppVentus\\MangopayBundle\\Helper\\MangopayHelper" appventus_mangopay.payment_helper.class: "AppVentus\\MangopayBundle\\Helper\\PaymentHelper" + appventus_mangopay.card_registration_helper.class: "AppVentus\\MangopayBundle\\Helper\\CardRegistrationHelper" appventus_mangopay.payment_direct_helper.class: "AppVentus\\MangopayBundle\\Helper\\PaymentDirectHelper" + appventus_mangopay.payment_out_helper.class: "AppVentus\\MangopayBundle\\Helper\\PaymentOutHelper" appventus_mangopay.bankwire_helper.class: "AppVentus\\MangopayBundle\\Helper\\BankwireHelper" appventus_mangopay.user_helper.class: "AppVentus\\MangopayBundle\\Helper\\UserHelper" appventus_mangopay.bank_information_helper.class: "AppVentus\\MangopayBundle\\Helper\\BankInformationHelper" @@ -23,39 +25,50 @@ 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.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.form.card: class: %appventus_mangopay.form.card%