From ce951857a0ad88d93a49d920be9a2e352cf15340 Mon Sep 17 00:00:00 2001 From: Lukas Kahwe Smith Date: Tue, 19 Dec 2017 15:03:21 +0100 Subject: [PATCH] also fix the theme compiler pass --- LiipThemeBundle.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LiipThemeBundle.php b/LiipThemeBundle.php index 4afcde5..2092a6d 100644 --- a/LiipThemeBundle.php +++ b/LiipThemeBundle.php @@ -24,7 +24,7 @@ public function build(ContainerBuilder $container) { parent::build($container); - $container->addCompilerPass(new ThemeCompilerPass(), PassConfig::TYPE_BEFORE_OPTIMIZATION, 100); + $container->addCompilerPass(new ThemeCompilerPass(), PassConfig::TYPE_BEFORE_OPTIMIZATION, -10); $container->addCompilerPass(new TemplateResourcesPass(), PassConfig::TYPE_BEFORE_OPTIMIZATION, -10); $container->addCompilerPass(new AsseticTwigFormulaPass(), PassConfig::TYPE_BEFORE_OPTIMIZATION, -10); }