1 | <?php |
||
5 | class Biasing |
||
6 | { |
||
7 | /** |
||
8 | * @var string[] |
||
9 | */ |
||
10 | public $bringToTop = array(); |
||
11 | |||
12 | /** |
||
13 | * @return string[] The list of product IDs |
||
14 | */ |
||
15 | public function getBringToTop() |
||
19 | |||
20 | /** |
||
21 | * A list of product IDs to bring to the top of the result set. This list |
||
22 | * will ensure that the products are included in the result set and appear in the order |
||
23 | * defined. |
||
24 | * |
||
25 | * @param string[] $bringToTop The list of productIds. |
||
26 | * |
||
27 | * @return Biasing |
||
28 | */ |
||
29 | public function setBringToTop($bringToTop) |
||
34 | } |