1 | <?php |
||
17 | abstract class AbstractIncomingRequest extends BaseAbstractIncomingRequest |
||
18 | { |
||
19 | /** |
||
20 | * {@inheritdoc} |
||
21 | * @throws \Omnipay\Common\Exception\InvalidResponseException |
||
22 | */ |
||
23 | public function sendData($data): IncomingResponse |
||
27 | |||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | protected function getIncomingParameters(): array |
||
46 | |||
47 | /** |
||
48 | * Trả về request parameter bag. |
||
49 | * |
||
50 | * @return \Symfony\Component\HttpFoundation\ParameterBag |
||
51 | */ |
||
52 | abstract protected function getIncomingParametersBag(): ParameterBag; |
||
53 | } |
||
54 |