fedi-feed-router/app/Dashboard/Stats/Stat.php

14 lines
225 B
PHP
Raw Normal View History

<?php
namespace App\Dashboard\Stats;
interface Stat
{
/**
* Stable identifier, also used as the island name for this stat's panel.
*/
public function key(): string;
public function label(): string;
}