| 1 | <?php |
||
| 19 | class ElasticsearchNotificationsOfUserSpecification implements ElasticsearchSearchSpecification |
||
| 20 | { |
||
| 21 | private $userId; |
||
| 22 | private $from; |
||
| 23 | private $size; |
||
| 24 | private $status; |
||
| 25 | |||
| 26 | public function __construct(string $userId, int $from, int $size, ?string $status) |
||
| 33 | |||
| 34 | public function buildSearch(string $index, string $type) : array |
||
| 62 | } |
||
| 63 |