Created new REST API action to list orphan visits

This commit is contained in:
Alejandro Celaya
2021-02-09 22:11:09 +01:00
parent dcf2526aad
commit 5d98316c4e
11 changed files with 171 additions and 12 deletions

View File

@@ -32,4 +32,9 @@ interface VisitsStatsHelperInterface
* @throws TagNotFoundException
*/
public function visitsForTag(string $tag, VisitsParams $params, ?ApiKey $apiKey = null): Paginator;
/**
* @return Visit[]|Paginator
*/
public function orphanVisits(VisitsParams $params): Paginator;
}