1 | <?php |
||
19 | class IncomingRequest extends AbstractRequest |
||
20 | { |
||
21 | use Parameters; |
||
22 | use ParametersNormalization; |
||
23 | |||
24 | /** |
||
25 | * {@inheritdoc} |
||
26 | */ |
||
27 | public function getData(): array |
||
36 | |||
37 | /** |
||
38 | * {@inheritdoc} |
||
39 | * @throws \Omnipay\Common\Exception\InvalidResponseException |
||
40 | */ |
||
41 | public function sendData($data): SignatureResponse |
||
45 | |||
46 | /** |
||
47 | * {@inheritdoc} |
||
48 | */ |
||
49 | public function initialize(array $parameters = []) |
||
61 | |||
62 | /** |
||
63 | * Trả về danh sách parameters từ VNPay gửi sang. |
||
64 | * |
||
65 | * @return array |
||
66 | */ |
||
67 | protected function getIncomingParameters(): array |
||
71 | } |
||
72 |