| 1 | <?php |
||
| 17 | class UsersOfSearchStringQuery |
||
| 18 | { |
||
| 19 | private $search; |
||
| 20 | private $size; |
||
| 21 | private $excludedIds; |
||
| 22 | |||
| 23 | public function __construct(string $search, int $size, array $excludedIds = []) |
||
| 29 | |||
| 30 | public function search() : string |
||
| 34 | |||
| 35 | public function size() : int |
||
| 39 | |||
| 40 | public function excludedIds() : array |
||
| 44 | } |
||
| 45 |