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

11 lines
168 B
PHP
Raw Permalink Normal View History

<?php
namespace App\Dashboard\Stats;
use App\Support\DateRange;
interface BreakdownStat extends Stat
{
public function for(DateRange $range): BreakdownResult;
}