From e0fe4827092d3a968bab67c93c38f28f1e2b3840 Mon Sep 17 00:00:00 2001 From: fyrye Date: Mon, 25 Sep 2017 12:44:25 -0400 Subject: [PATCH] Fix Symfony 3.1 depreciation notice Not quoting the scalar "%shapecode.twig_string_loader.twig_loader.string.class%" starting with the "%" indicator character is deprecated since Symfony 3.1 and will throw a ParseException in 4.0. --- src/Resources/config/services.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Resources/config/services.yml b/src/Resources/config/services.yml index b108f1e..415499f 100644 --- a/src/Resources/config/services.yml +++ b/src/Resources/config/services.yml @@ -7,6 +7,6 @@ services: # twig shapecode.twig_string_loader.twig_loader.string: - class: %shapecode.twig_string_loader.twig_loader.string.class% + class: '%shapecode.twig_string_loader.twig_loader.string.class%' tags: - { name: twig.loader }