1 | <?php |
||
18 | class Limit extends Criterion |
||
19 | { |
||
20 | /** |
||
21 | * @var int |
||
22 | */ |
||
23 | private $limit; |
||
24 | |||
25 | /** |
||
26 | * Limit constructor. |
||
27 | * @param Query $query |
||
28 | * @param int $limit |
||
29 | */ |
||
30 | 4 | public function __construct(Query $query, int $limit) |
|
36 | |||
37 | /** |
||
38 | * @return int |
||
39 | */ |
||
40 | 4 | public function getLimit(): int |
|
44 | } |
||
45 |