قرینه از
https://github.com/matomo-org/matomo.git
synced 2025-08-22 15:07:44 +00:00

* 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>
23 خطوط
392 B
PHP
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);
|
|
}
|