mirror of
https://github.com/shlinkio/shlink.git
synced 2026-03-01 20:53:14 +08:00
18 lines
293 B
PHP
18 lines
293 B
PHP
<?php
|
|
namespace Shlinkio\Shlink\Core\Service;
|
|
|
|
use Shlinkio\Shlink\Core\Entity\Visit;
|
|
|
|
interface VisitServiceInterface
|
|
{
|
|
/**
|
|
* @return Visit[]
|
|
*/
|
|
public function getUnlocatedVisits();
|
|
|
|
/**
|
|
* @param Visit $visit
|
|
*/
|
|
public function saveVisit(Visit $visit);
|
|
}
|