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
diff options
context:
space:
mode:
authorStefan Giehl <stefan@matomo.org>2020-01-28 00:20:43 +0300
committerThomas Steur <tsteur@users.noreply.github.com>2020-01-28 00:20:43 +0300
commit907a3d6f78693bcaadde7460fe0c2224161de63b (patch)
tree1c87dd15286dca1afc9fc6b20ca8ca80ca3cb218 /config/environment
parentf734983e24af1dd2c1b37208bc18d6dea4114815 (diff)
Use rebranded components (#15253)
Diffstat (limited to 'config/environment')
-rw-r--r--config/environment/dev.php2
-rw-r--r--config/environment/test.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/config/environment/dev.php b/config/environment/dev.php
index a8bedecca9..f0d1514d17 100644
--- a/config/environment/dev.php
+++ b/config/environment/dev.php
@@ -2,7 +2,7 @@
return array(
- 'Piwik\Cache\Backend' => DI\object('Piwik\Cache\Backend\ArrayCache'),
+ 'Matomo\Cache\Backend' => DI\object('Matomo\Cache\Backend\ArrayCache'),
'Piwik\Translation\Loader\LoaderInterface' => DI\object('Piwik\Translation\Loader\LoaderCache')
->constructor(DI\get('Piwik\Translation\Loader\DevelopmentLoader')),
diff --git a/config/environment/test.php b/config/environment/test.php
index 7cb8defba0..bfd8e54460 100644
--- a/config/environment/test.php
+++ b/config/environment/test.php
@@ -29,7 +29,7 @@ return array(
];
}),
- 'Piwik\Cache\Backend' => function () {
+ 'Matomo\Cache\Backend' => function () {
return \Piwik\Cache::buildBackend('file');
},
'cache.eager.cache_id' => 'eagercache-test-',