Created new action to get default visit stats

This commit is contained in:
Alejandro Celaya
2020-05-01 11:40:02 +02:00
parent 5beaab85ac
commit 1ef10f11cb
9 changed files with 129 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
<?php
declare(strict_types=1);
namespace Shlinkio\Shlink\Core\Visit;
use Shlinkio\Shlink\Core\Visit\Model\VisitsStats;
interface VisitsStatsHelperInterface
{
public function getVisitsStats(): VisitsStats;
}