1 | <?php |
||
24 | class SearchResponseLinks |
||
25 | { |
||
26 | /** |
||
27 | * Link do bieżacej strony wyników |
||
28 | * |
||
29 | * @var string |
||
30 | */ |
||
31 | public $self; |
||
32 | /** |
||
33 | * Link do poprzedniej strony wyników |
||
34 | * |
||
35 | * @var string |
||
36 | */ |
||
37 | public $prev; |
||
38 | /** |
||
39 | * Link do pierwszej strony wyników |
||
40 | * |
||
41 | * @var string |
||
42 | */ |
||
43 | public $first; |
||
44 | /** |
||
45 | * Link do następnej strony wyników |
||
46 | * |
||
47 | * @var string |
||
48 | */ |
||
49 | public $next; |
||
50 | /** |
||
51 | * Link do ostatniej strony wyników |
||
52 | * |
||
53 | * @var string |
||
54 | */ |
||
55 | public $last; |
||
56 | |||
57 | /** |
||
58 | * SearchResponseLinks constructor. |
||
59 | * |
||
60 | * @param string|null $self |
||
61 | * @param string|null $first |
||
62 | * @param string|null $next |
||
63 | * @param string|null $last |
||
64 | * @param string|null $prev |
||
65 | */ |
||
66 | 6 | public function __construct(string $self = null, string $first = null, string $next = null, string $last = null, string $prev = null) |
|
74 | } |
||
75 |