1 | <?php |
||
19 | class DomesticGateway extends AbstractGateway |
||
20 | { |
||
21 | /** |
||
22 | * {@inheritdoc} |
||
23 | */ |
||
24 | public function getName(): string |
||
28 | |||
29 | /** |
||
30 | *{@inheritdoc} |
||
31 | * @return \Omnipay\Common\Message\AbstractRequest|PurchaseRequest |
||
32 | */ |
||
33 | public function purchase(array $options = []): PurchaseRequest |
||
37 | |||
38 | /** |
||
39 | *{@inheritdoc} |
||
40 | * @return \Omnipay\Common\Message\AbstractRequest|IncomingRequest |
||
41 | */ |
||
42 | public function completePurchase(array $options = []): IncomingRequest |
||
46 | |||
47 | /** |
||
48 | *{@inheritdoc} |
||
49 | * @return \Omnipay\Common\Message\AbstractRequest|IncomingRequest |
||
50 | */ |
||
51 | public function notification(array $options = []): IncomingRequest |
||
55 | |||
56 | /** |
||
57 | *{@inheritdoc} |
||
58 | * @return \Omnipay\Common\Message\AbstractRequest|QueryTransactionRequest |
||
59 | */ |
||
60 | public function queryTransaction(array $options = []): QueryTransactionRequest |
||
64 | } |
||
65 |