Created endpoint to list non-orphan visits

This commit is contained in:
Alejandro Celaya
2022-01-16 12:24:02 +01:00
parent 8b79eee081
commit fe1fa7689a
9 changed files with 184 additions and 3 deletions

View File

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