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

13 lines
262 B
PHP

<?php
namespace App\Dashboard\Stats;
interface Stat
{
/**
* Stable identifier. Island names in dashboard.blade.php are written to match by hand, not derived from this.
*/
public function key(): string;
public function label(): string;
}