From cccf79c56ef24f072f85d2dc0c2e63ba4e18d367 Mon Sep 17 00:00:00 2001 From: Andrii Dembitskyi Date: Wed, 8 May 2019 15:12:37 +0300 Subject: [PATCH] Fix php config example for hinclude_default_template --- templating/hinclude.rst | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/templating/hinclude.rst b/templating/hinclude.rst index 396dec13643..ee5047cc124 100644 --- a/templating/hinclude.rst +++ b/templating/hinclude.rst @@ -93,9 +93,7 @@ in your application configuration: $container->loadFromExtension('framework', [ // ... 'fragments' => [ - 'hinclude_default_template' => [ - 'hinclude.html.twig', - ], + 'hinclude_default_template' => 'hinclude.html.twig', ], ]);