CampaignGoalType.php
1 year ago
CampaignPageMetaKeys.php
1 year ago
CampaignPageStatus.php
5 months ago
CampaignStatus.php
1 year ago
CampaignType.php
1 year ago
CampaignType.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\Campaigns\ValueObjects; |
| 4 | |
| 5 | use Give\Framework\Support\ValueObjects\Enum; |
| 6 | |
| 7 | /** |
| 8 | * @since 4.0.0 |
| 9 | * |
| 10 | * @method static CampaignType CORE() |
| 11 | * @method static CampaignType PEER_TO_PEER() |
| 12 | * @method bool isCore() |
| 13 | * @method bool isPeerToPeer() |
| 14 | */ |
| 15 | class CampaignType extends Enum |
| 16 | { |
| 17 | const CORE = 'core'; |
| 18 | const PEER_TO_PEER = 'p2p'; |
| 19 | } |
| 20 |