mirror of
https://github.com/shlinkio/shlink.git
synced 2026-03-08 08:13:11 +08:00
Create command to send visits to matomo
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
<?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;
|
||||
}
|
||||
Reference in New Issue
Block a user