2026-03-05 08:26:51 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace MintyPHP\Repository\User;
|
|
|
|
|
|
2026-03-13 21:58:51 +01:00
|
|
|
/** Contract for paginated user listing with multi-criteria filtering. */
|
2026-03-05 08:26:51 +01:00
|
|
|
interface UserListQueryRepositoryInterface
|
|
|
|
|
{
|
|
|
|
|
public function listPaged(array $options): array;
|
|
|
|
|
}
|