mirror of
https://github.com/shlinkio/shlink.git
synced 2026-02-28 12:13:13 +08:00
15 lines
247 B
PHP
15 lines
247 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink\Core\Matomo;
|
|
|
|
use Throwable;
|
|
|
|
interface VisitSendingProgressTrackerInterface
|
|
{
|
|
public function success(int $index): void;
|
|
|
|
public function error(int $index, Throwable $e): void;
|
|
}
|