mirror of
https://github.com/shlinkio/shlink.git
synced 2026-03-07 15:53:13 +08:00
10 lines
211 B
PHP
10 lines
211 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink\Core\Service;
|
|
|
|
interface VisitServiceInterface
|
|
{
|
|
public function locateVisits(callable $getGeolocationData, ?callable $locatedVisit = null): void;
|
|
}
|