Files
shlink/module/IpGeolocation/src/GeoLite2/DbUpdaterInterface.php
2019-08-10 23:30:47 +02:00

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;
}