From 697ff44854d4bcb9b670d776373a29568e529f3f Mon Sep 17 00:00:00 2001 From: Alexander Birkner Date: Wed, 24 Feb 2016 22:16:07 +0100 Subject: [PATCH] Not quoting the scalar is deprecated since Symfony 2.8 and will throw a ParseException in 3.0 --- Resources/config/services.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/config/services.yml b/Resources/config/services.yml index 5a0bd68..99bb6e1 100755 --- a/Resources/config/services.yml +++ b/Resources/config/services.yml @@ -1,7 +1,7 @@ services: code_mirror.asset_manager: class: Solution\CodeMirrorBundle\Asset\AssetManager - arguments: [@file_locator, %code_mirror.mode_dirs%, %code_mirror.themes_dirs%, %kernel.cache_dir%, %kernel.environment%] + arguments: ["@file_locator", %code_mirror.mode_dirs%, %code_mirror.themes_dirs%, %kernel.cache_dir%, %kernel.environment%] code_mirror.form.type: class: %code_mirror.form_type% @@ -11,6 +11,6 @@ services: code_mirror.twig.extension: class: Solution\CodeMirrorBundle\Twig\CodeMirrorExtension - arguments: [@code_mirror.asset_manager] + arguments: ["@code_mirror.asset_manager"] tags: - { name: twig.extension }