2026-08-12 00:32:46 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Dashboard\Stats;
|
|
|
|
|
|
|
|
|
|
interface Stat
|
|
|
|
|
{
|
|
|
|
|
/**
|
2026-08-13 18:06:49 +02:00
|
|
|
* Stable identifier. Island names in dashboard.blade.php are written to match by hand, not derived from this.
|
2026-08-12 00:32:46 +02:00
|
|
|
*/
|
|
|
|
|
public function key(): string;
|
|
|
|
|
|
|
|
|
|
public function label(): string;
|
|
|
|
|
}
|