grgk/seo-analyzer

View on GitHub
src/Metric/MetricInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace SeoAnalyzer\Metric;

interface MetricInterface
{
    /**
     * Returns description of the results of metric analysis.
     *
     * @return string
     */
    public function analyze(): string;
}