13 lines
262 B
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;
|
|
}
|