12 lines
185 B
PHP
12 lines
185 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace MintyPHP\Repository\Stats;
|
||
|
|
|
||
|
|
interface AdminStatsRepositoryInterface
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* @return array<string, mixed>
|
||
|
|
*/
|
||
|
|
public function buildViewData(): array;
|
||
|
|
}
|