SubscriptionMode.php
1 year ago
SubscriptionNoteMetaKeys.php
9 months ago
SubscriptionNoteType.php
9 months ago
SubscriptionPeriod.php
3 years ago
SubscriptionStatus.php
9 months ago
SubscriptionNoteMetaKeys.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\Subscriptions\ValueObjects; |
| 4 | |
| 5 | use Give\Framework\Support\ValueObjects\Enum; |
| 6 | use Give\Framework\Support\ValueObjects\EnumInteractsWithQueryBuilder; |
| 7 | |
| 8 | /** |
| 9 | * @since 4.8.0 |
| 10 | * |
| 11 | * @method static SubscriptionNoteMetaKeys TYPE() |
| 12 | * @method bool isType() |
| 13 | */ |
| 14 | class SubscriptionNoteMetaKeys extends Enum |
| 15 | { |
| 16 | use EnumInteractsWithQueryBuilder; |
| 17 | |
| 18 | const TYPE = 'note_type'; |
| 19 | } |
| 20 |