mirror of
https://github.com/bitinflow/expose.git
synced 2026-03-13 13:35:54 +00:00
11 lines
173 B
PHP
11 lines
173 B
PHP
<?php
|
|
|
|
namespace App\Contracts;
|
|
|
|
use React\Promise\PromiseInterface;
|
|
|
|
interface StatisticsRepository
|
|
{
|
|
public function getStatistics($from, $until): PromiseInterface;
|
|
}
|