Subscription
1 year ago
PaymentGatewayInterface.php
11 months ago
PaymentGatewayRefundable.php
11 months ago
PaymentGatewaysIterator.php
3 years ago
SubscriptionModuleInterface.php
1 year ago
WebhookNotificationsListener.php
11 months ago
PaymentGatewayRefundable.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\Framework\PaymentGateways\Contracts; |
| 4 | |
| 5 | use Give\Donations\Models\Donation; |
| 6 | use Give\Framework\PaymentGateways\Commands\GatewayCommand; |
| 7 | |
| 8 | /** |
| 9 | * @since 4.6.0 |
| 10 | */ |
| 11 | interface PaymentGatewayRefundable |
| 12 | { |
| 13 | /** |
| 14 | * @since 4.6.0 |
| 15 | * |
| 16 | * @return GatewayCommand |
| 17 | */ |
| 18 | public function refundDonation(Donation $donation); |
| 19 | } |
| 20 |