From 90a4dea14a10b5d8dfbcb3692c595e430dd3a905 Mon Sep 17 00:00:00 2001 From: Allan Simon Date: Fri, 23 Sep 2016 05:47:17 +0800 Subject: [PATCH] put double quote around @ in services.yml (forgot some) symfony3 compatibility --- Resources/config/services.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Resources/config/services.yml b/Resources/config/services.yml index 6edb4c5..97470b6 100644 --- a/Resources/config/services.yml +++ b/Resources/config/services.yml @@ -50,8 +50,8 @@ services: appventus_mangopay.card_registration_helper: class: %appventus_mangopay.card_registration_helper.class% arguments: - - @appventus_mangopay.mango_api - - @doctrine.orm.entity_manager + - "@appventus_mangopay.mango_api" + - "@doctrine.orm.entity_manager" - "@event_dispatcher" appventus_mangopay.payment_helper: class: %appventus_mangopay.payment_helper.class% @@ -79,7 +79,7 @@ services: appventus_mangopay.payment_out_helper: class: %appventus_mangopay.payment_out_helper.class% arguments: - - @appventus_mangopay.mango_api + - "@appventus_mangopay.mango_api" appventus_mangopay.form.card: class: %appventus_mangopay.form.card%