1 | <?php |
||
14 | abstract class AbstractIncomingRequest extends AbstractRequest |
||
15 | { |
||
16 | /** |
||
17 | * {@inheritdoc} |
||
18 | * @throws \Omnipay\Common\Exception\InvalidRequestException |
||
19 | */ |
||
20 | public function getData(): array |
||
29 | |||
30 | /** |
||
31 | * {@inheritdoc} |
||
32 | */ |
||
33 | public function initialize(array $parameters = []) |
||
43 | |||
44 | /** |
||
45 | * Trả về danh sách parameters từ MoMo gửi sang. |
||
46 | * |
||
47 | * @return array |
||
48 | */ |
||
49 | abstract protected function getIncomingParameters(): array; |
||
50 | } |
||
51 |