|
13 | 13 | *
|
14 | 14 | * @see AbstractGateway
|
15 | 15 | *
|
16 |
| - * @method \Omnipay\Common\Message\RequestInterface authorize(array $options = array()) (Optional method) |
| 16 | + * @method \Omnipay\Common\Message\NotificationInterface acceptNotification(array $options = array()) (Optional method) |
| 17 | + * Receive and handle an instant payment notification (IPN) |
| 18 | + * @method \Omnipay\Common\Message\RequestInterface authorize(array $options = array()) (Optional method) |
17 | 19 | * Authorize an amount on the customers card
|
18 |
| - * @method \Omnipay\Common\Message\RequestInterface completeAuthorize(array $options = array()) (Optional method) |
| 20 | + * @method \Omnipay\Common\Message\RequestInterface completeAuthorize(array $options = array()) (Optional method) |
19 | 21 | * Handle return from off-site gateways after authorization
|
20 |
| - * @method \Omnipay\Common\Message\RequestInterface capture(array $options = array()) (Optional method) |
| 22 | + * @method \Omnipay\Common\Message\RequestInterface capture(array $options = array()) (Optional method) |
21 | 23 | * Capture an amount you have previously authorized
|
22 |
| - * @method \Omnipay\Common\Message\RequestInterface purchase(array $options = array()) (Optional method) |
| 24 | + * @method \Omnipay\Common\Message\RequestInterface purchase(array $options = array()) (Optional method) |
23 | 25 | * Authorize and immediately capture an amount on the customers card
|
24 |
| - * @method \Omnipay\Common\Message\RequestInterface completePurchase(array $options = array()) (Optional method) |
| 26 | + * @method \Omnipay\Common\Message\RequestInterface completePurchase(array $options = array()) (Optional method) |
25 | 27 | * Handle return from off-site gateways after purchase
|
26 |
| - * @method \Omnipay\Common\Message\RequestInterface refund(array $options = array()) (Optional method) |
| 28 | + * @method \Omnipay\Common\Message\RequestInterface refund(array $options = array()) (Optional method) |
27 | 29 | * Refund an already processed transaction
|
28 |
| - * @method \Omnipay\Common\Message\RequestInterface void(array $options = array()) (Optional method) |
| 30 | + * @method \Omnipay\Common\Message\RequestInterface fetchTransaction(array $options = []) (Optional method) |
| 31 | + * Fetches transaction information |
| 32 | + * @method \Omnipay\Common\Message\RequestInterface void(array $options = array()) (Optional method) |
29 | 33 | * Generally can only be called up to 24 hours after submitting a transaction
|
30 |
| - * @method \Omnipay\Common\Message\RequestInterface createCard(array $options = array()) (Optional method) |
| 34 | + * @method \Omnipay\Common\Message\RequestInterface createCard(array $options = array()) (Optional method) |
31 | 35 | * The returned response object includes a cardReference, which can be used for future transactions
|
32 |
| - * @method \Omnipay\Common\Message\RequestInterface updateCard(array $options = array()) (Optional method) |
| 36 | + * @method \Omnipay\Common\Message\RequestInterface updateCard(array $options = array()) (Optional method) |
33 | 37 | * Update a stored card
|
34 |
| - * @method \Omnipay\Common\Message\RequestInterface deleteCard(array $options = array()) (Optional method) |
| 38 | + * @method \Omnipay\Common\Message\RequestInterface deleteCard(array $options = array()) (Optional method) |
35 | 39 | * Delete a stored card
|
36 |
| -*/ |
| 40 | + */ |
37 | 41 | interface GatewayInterface
|
38 | 42 | {
|
39 | 43 | /**
|
|
0 commit comments