14 lines
225 B
PHP
14 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;
|
||
|
|
}
|