Skip to content

Commit e4054bc

Browse files
authored
Merge pull request #102 from tgabi333/patch-1
fix GatewayInterface phpdocs
2 parents 0d84af5 + 306abd1 commit e4054bc

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/Omnipay/Common/GatewayInterface.php

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,25 +13,25 @@
1313
*
1414
* @see AbstractGateway
1515
*
16-
* @method \Omnipay\Common\Message\ResponseInterface authorize(array $options = array()) (Optional method)
16+
* @method \Omnipay\Common\Message\RequestInterface authorize(array $options = array()) (Optional method)
1717
* Authorize an amount on the customers card
18-
* @method \Omnipay\Common\Message\ResponseInterface completeAuthorize(array $options = array()) (Optional method)
18+
* @method \Omnipay\Common\Message\RequestInterface completeAuthorize(array $options = array()) (Optional method)
1919
* Handle return from off-site gateways after authorization
20-
* @method \Omnipay\Common\Message\ResponseInterface capture(array $options = array()) (Optional method)
20+
* @method \Omnipay\Common\Message\RequestInterface capture(array $options = array()) (Optional method)
2121
* Capture an amount you have previously authorized
22-
* @method \Omnipay\Common\Message\ResponseInterface purchase(array $options = array()) (Optional method)
22+
* @method \Omnipay\Common\Message\RequestInterface purchase(array $options = array()) (Optional method)
2323
* Authorize and immediately capture an amount on the customers card
24-
* @method \Omnipay\Common\Message\ResponseInterface completePurchase(array $options = array()) (Optional method)
24+
* @method \Omnipay\Common\Message\RequestInterface completePurchase(array $options = array()) (Optional method)
2525
* Handle return from off-site gateways after purchase
26-
* @method \Omnipay\Common\Message\ResponseInterface refund(array $options = array()) (Optional method)
26+
* @method \Omnipay\Common\Message\RequestInterface refund(array $options = array()) (Optional method)
2727
* Refund an already processed transaction
28-
* @method \Omnipay\Common\Message\ResponseInterface void(array $options = array()) (Optional method)
28+
* @method \Omnipay\Common\Message\RequestInterface void(array $options = array()) (Optional method)
2929
* Generally can only be called up to 24 hours after submitting a transaction
30-
* @method \Omnipay\Common\Message\ResponseInterface createCard(array $options = array()) (Optional method)
30+
* @method \Omnipay\Common\Message\RequestInterface createCard(array $options = array()) (Optional method)
3131
* The returned response object includes a cardReference, which can be used for future transactions
32-
* @method \Omnipay\Common\Message\ResponseInterface updateCard(array $options = array()) (Optional method)
32+
* @method \Omnipay\Common\Message\RequestInterface updateCard(array $options = array()) (Optional method)
3333
* Update a stored card
34-
* @method \Omnipay\Common\Message\ResponseInterface deleteCard(array $options = array()) (Optional method)
34+
* @method \Omnipay\Common\Message\RequestInterface deleteCard(array $options = array()) (Optional method)
3535
* Delete a stored card
3636
*/
3737
interface GatewayInterface

0 commit comments

Comments
 (0)