Files
shlink/module/Core/src/Visit/VisitsStatsHelperInterface.php
2020-05-01 11:40:02 +02:00

13 lines
215 B
PHP

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