Various code reshuffelling.

This commit is contained in:
James Cole
2021-03-12 06:20:01 +01:00
parent 97561ab9c9
commit 748d61fb8f
51 changed files with 1874 additions and 1873 deletions

View File

@@ -39,15 +39,6 @@ interface TelemetryRepositoryInterface
*/
public function count(): int;
/**
* Return paginated result of telemetry records.
*
* @param int $pageSize
*
* @return LengthAwarePaginator
*/
public function paginated( int $pageSize): LengthAwarePaginator;
/**
* Delete all records.
*/
@@ -58,4 +49,13 @@ interface TelemetryRepositoryInterface
*/
public function deleteSubmitted(): void;
/**
* Return paginated result of telemetry records.
*
* @param int $pageSize
*
* @return LengthAwarePaginator
*/
public function paginated(int $pageSize): LengthAwarePaginator;
}