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

13 lines
225 B
PHP

<?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;
}