1 | <?php |
||
14 | class IncomingRequest extends AbstractRequest |
||
15 | { |
||
16 | /** |
||
17 | * {@inheritdoc} |
||
18 | */ |
||
19 | public function getData(): array |
||
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | * @throws \Omnipay\Common\Exception\InvalidResponseException |
||
32 | */ |
||
33 | public function sendData($data): IncomingResponse |
||
37 | |||
38 | /** |
||
39 | * {@inheritdoc} |
||
40 | */ |
||
41 | public function initialize(array $parameters = []) |
||
51 | |||
52 | /** |
||
53 | * Trả về danh sách parameters từ OnePay gửi sang. |
||
54 | * |
||
55 | * @return array |
||
56 | */ |
||
57 | protected function getIncomingParameters(): array |
||
61 | } |
||
62 |