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

14 lines
262 B
PHP
Raw Normal View History

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