DonationMetaKeys.php
1 year ago
DonationMode.php
1 year ago
DonationNoteMetaKeys.php
3 years ago
DonationNoteType.php
3 years ago
DonationStatus.php
8 months ago
DonationType.php
3 years ago
DonationNoteMetaKeys.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\Donations\ValueObjects; |
| 4 | |
| 5 | use Give\Framework\Support\ValueObjects\Enum; |
| 6 | use Give\Framework\Support\ValueObjects\EnumInteractsWithQueryBuilder; |
| 7 | |
| 8 | /** |
| 9 | * @since 2.25.0 |
| 10 | * |
| 11 | * @method static DonationNoteMetaKeys TYPE() |
| 12 | * @method bool isType() |
| 13 | */ |
| 14 | class DonationNoteMetaKeys extends Enum |
| 15 | { |
| 16 | use EnumInteractsWithQueryBuilder; |
| 17 | |
| 18 | const TYPE = 'note_type'; |
| 19 | } |
| 20 |