9 lines
145 B
PHP
9 lines
145 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace MintyPHP\Repository\User;
|
||
|
|
|
||
|
|
interface UserListQueryRepositoryInterface
|
||
|
|
{
|
||
|
|
public function listPaged(array $options): array;
|
||
|
|
}
|