give
/
src
/
Framework
/
PaymentGateways
/
Contracts
/
Subscription
/
SubscriptionDashboardLinkable.php
SubscriptionAmountEditable.php
4 years ago
SubscriptionDashboardLinkable.php
4 years ago
SubscriptionPaymentMethodEditable.php
3 years ago
SubscriptionTransactionsSynchronizable.php
4 years ago
SubscriptionDashboardLinkable.php
17 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\Framework\PaymentGateways\Contracts\Subscription; |
| 4 | |
| 5 | use Give\Subscriptions\Models\Subscription; |
| 6 | |
| 7 | /** |
| 8 | * @since 2.21.2 |
| 9 | */ |
| 10 | interface SubscriptionDashboardLinkable |
| 11 | { |
| 12 | /** |
| 13 | * @since 2.21.2 |
| 14 | */ |
| 15 | public function gatewayDashboardSubscriptionUrl(Subscription $subscription): string; |
| 16 | } |
| 17 |