mirror of
https://github.com/shlinkio/shlink.git
synced 2026-02-28 04:03:12 +08:00
17 lines
355 B
PHP
17 lines
355 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink\IpGeolocation\GeoLite2;
|
|
|
|
use Shlinkio\Shlink\IpGeolocation\Exception\RuntimeException;
|
|
|
|
interface DbUpdaterInterface
|
|
{
|
|
public function databaseFileExists(): bool;
|
|
|
|
/**
|
|
* @throws RuntimeException
|
|
*/
|
|
public function downloadFreshCopy(?callable $handleProgress = null): void;
|
|
}
|