| 1 | <?php |
||
| 8 | class FilterNotifications |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var Specification |
||
| 12 | */ |
||
| 13 | private $specification; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @var array|null |
||
| 17 | */ |
||
| 18 | private $orderings; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @var int|null |
||
| 22 | */ |
||
| 23 | private $maxResults; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @var int|null |
||
| 27 | */ |
||
| 28 | private $firstResult; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @param Specification $specification |
||
| 32 | * @param array|null $orderings |
||
| 33 | * @param int|null $maxResults |
||
| 34 | * @param int|null $firstResult |
||
| 35 | */ |
||
| 36 | 1 | public function __construct( |
|
| 47 | |||
| 48 | /** |
||
| 49 | * @return Specification |
||
| 50 | */ |
||
| 51 | 1 | public function specification(): Specification |
|
| 55 | |||
| 56 | /** |
||
| 57 | * @return array|null |
||
| 58 | */ |
||
| 59 | 1 | public function orderings(): ?array |
|
| 63 | |||
| 64 | /** |
||
| 65 | * @return int|null |
||
| 66 | */ |
||
| 67 | 1 | public function maxResults(): ?int |
|
| 71 | |||
| 72 | /** |
||
| 73 | * @return int|null |
||
| 74 | */ |
||
| 75 | 1 | public function firstResult(): ?int |
|
| 79 | } |
||
| 80 |