1
0
قرینه از https://github.com/matomo-org/matomo.git synced 2025-08-22 15:07:44 +00:00
Files
matomo/plugins/SEO/Metric/MetricsProvider.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

23 خطوط
392 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;
/**
* Provides SEO metrics for a domain.
*/
interface MetricsProvider
{
/**
* @param string $domain
* @return Metric[]
*/
public function getMetrics(string $domain);
}