Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorThomas Steur <tsteur@users.noreply.github.com>2021-10-14 05:35:59 +0300
committerGitHub <noreply@github.com>2021-10-14 05:35:59 +0300
commit4764df9b0c795301976788df87fe314ecc7acece (patch)
tree628aa894ae827a1af23e84a09d3a1af61f742cba /config
parentb3c276e03a3e79af7d125e6a93bb6d84b4b59eed (diff)
Use the new twig template DI in more places (#18150)
* Use the new twig template DI in more places * Add possibility to prevent the deletion of template cache through DI
Diffstat (limited to 'config')
-rw-r--r--config/global.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/config/global.php b/config/global.php
index ac77d53179..f7834df256 100644
--- a/config/global.php
+++ b/config/global.php
@@ -33,6 +33,8 @@ return array(
'path.cache' => DI\string('{path.tmp}/cache/tracker/'),
+ 'view.clearcompiledtemplates.enable' => true,
+
'Matomo\Cache\Eager' => function (ContainerInterface $c) {
$backend = $c->get('Matomo\Cache\Backend');
$cacheId = $c->get('cache.eager.cache_id');