New-Thanasoft/thanasoft-back/app/Repositories/FinancialStatisticsRepositoryInterface.php
2026-05-11 13:30:24 +03:00

11 lines
159 B
PHP

<?php
declare(strict_types=1);
namespace App\Repositories;
interface FinancialStatisticsRepositoryInterface
{
public function getStatistics(): array;
}