1
0
قرینه از https://github.com/matomo-org/matomo.git synced 2025-08-22 06:57:53 +00:00
Files
matomo/plugins/SEO/Metric/ProviderCache.php
Nathan Gavin 2a7934cc00 Update codebase to satisfy PHPStan level 1 (#23328)
* Update some errors picked up by PHPStan

* More PHPStan suggestions

* revisit logic around null coalescing and added phpstan ignore comment

* remove phpstan comment

* Update some errors picked up by PHPStan

* More PHPStan suggestions

* revisit logic around null coalescing and added phpstan ignore comment

* remove phpstan comment

* further fixes

* resolve merge conflicts

* reapply fixes

* small adjustments

---------

Co-authored-by: sgiehl <stefan@matomo.org>
2025-06-18 10:23:58 +02:00

51 خطوط
970 B
PHP

<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace Piwik\Plugins\SEO\Metric;
use Piwik\Cache;
use Matomo\Cache\Lazy;
/**
* Caches another provider.
*/
class ProviderCache implements MetricsProvider
{
/**
* @var MetricsProvider
*/
private $provider;
/**
* @var Lazy
*/
private $cache;
public function __construct(MetricsProvider $provider)
{
$this->provider = $provider;
$this->cache = Cache::getLazyCache();
}
public function getMetrics(string $domain)
{
$cacheId = 'SEO_getRank_' . md5($domain ?? '');
$metrics = $this->cache->fetch($cacheId);
if (! is_array($metrics)) {
$metrics = $this->provider->getMetrics($domain);
$this->cache->save($cacheId, $metrics, 60 * 60 * 6);
}
return $metrics;
}
}