| 1 | <?php |
||
| 18 | class GetOrderHistory implements QueryInterface |
||
| 19 | { |
||
| 20 | /** @var string|null */ |
||
| 21 | protected $token; |
||
| 22 | |||
| 23 | /** @var PaginationParameters */ |
||
| 24 | protected $paginationParameters; |
||
| 25 | |||
| 26 | public function __construct(?string $token, PaginationParameters $paginationParameters) |
||
| 31 | |||
| 32 | public function token(): ?string |
||
| 36 | |||
| 37 | public function paginationParameters(): PaginationParameters |
||
| 41 | } |
||
| 42 |