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 /plugins/Marketplace/Api
parentf734983e24af1dd2c1b37208bc18d6dea4114815 (diff)
Use rebranded components (#15253)
Diffstat (limited to 'plugins/Marketplace/Api')
-rw-r--r--plugins/Marketplace/Api/Client.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Marketplace/Api/Client.php b/plugins/Marketplace/Api/Client.php
index 7334d2f629..b1e42b9ee9 100644
--- a/plugins/Marketplace/Api/Client.php
+++ b/plugins/Marketplace/Api/Client.php
@@ -8,7 +8,7 @@
*/
namespace Piwik\Plugins\Marketplace\Api;
-use Piwik\Cache;
+use Matomo\Cache\Lazy;
use Piwik\Common;
use Piwik\Container\StaticContainer;
use Piwik\Filesystem;
@@ -34,7 +34,7 @@ class Client
private $service;
/**
- * @var Cache\Lazy
+ * @var Lazy
*/
private $cache;
@@ -53,7 +53,7 @@ class Client
*/
private $environment;
- public function __construct(Service $service, Cache\Lazy $cache, LoggerInterface $logger, Environment $environment)
+ public function __construct(Service $service, Lazy $cache, LoggerInterface $logger, Environment $environment)
{
$this->service = $service;
$this->cache = $cache;