DonorAddress.php
1 year ago
DonorMetaKeys.php
1 year ago
DonorNoteMetaKeys.php
1 year ago
DonorNoteType.php
1 year ago
DonorType.php
9 months ago
DonorNoteMetaKeys.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\Donors\ValueObjects; |
| 4 | |
| 5 | use Give\Framework\Support\ValueObjects\Enum; |
| 6 | use Give\Framework\Support\ValueObjects\EnumInteractsWithQueryBuilder; |
| 7 | |
| 8 | /** |
| 9 | * @since 4.4.0 |
| 10 | * |
| 11 | * @method static DonorNoteMetaKeys TYPE() |
| 12 | * @method bool isType() |
| 13 | */ |
| 14 | class DonorNoteMetaKeys extends Enum |
| 15 | { |
| 16 | use EnumInteractsWithQueryBuilder; |
| 17 | |
| 18 | const TYPE = 'note_type'; |
| 19 | } |
| 20 |