1 | <?php |
||
18 | class Limit implements QueryModifier |
||
19 | { |
||
20 | /** |
||
21 | * @deprecated This property will be marked as private in 2.0. |
||
22 | * |
||
23 | * @var int limit |
||
24 | */ |
||
25 | protected $limit; |
||
26 | |||
27 | /** |
||
28 | * @param int $limit |
||
29 | */ |
||
30 | public function __construct($limit) |
||
34 | |||
35 | /** |
||
36 | * @param QueryBuilder $qb |
||
37 | * @param string $dqlAlias |
||
38 | */ |
||
39 | public function modify(QueryBuilder $qb, $dqlAlias) |
||
43 | } |
||
44 |
This property has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the property will be removed from the class and what other property to use instead.