Moved VisitsTracker service to Visit namespace

This commit is contained in:
Alejandro Celaya
2021-02-08 19:50:17 +01:00
parent 1b4e62b823
commit 36be44e7b5
8 changed files with 12 additions and 12 deletions

View File

@@ -0,0 +1,13 @@
<?php
declare(strict_types=1);
namespace Shlinkio\Shlink\Core\Visit;
use Shlinkio\Shlink\Core\Entity\ShortUrl;
use Shlinkio\Shlink\Core\Model\Visitor;
interface VisitsTrackerInterface
{
public function track(ShortUrl $shortUrl, Visitor $visitor): void;
}