| 1 |
<?php |
| 2 |
|
| 3 |
namespace Give\DonationForms\ValueObjects; |
| 4 |
|
| 5 |
use Give\Framework\Support\ValueObjects\Enum; |
| 6 |
|
| 7 |
/** |
| 8 |
* @since 4.1.0 |
| 9 |
* |
| 10 |
* @method static GoalSource CAMPAIGN() |
| 11 |
* @method static GoalSource FORM() |
| 12 |
* @method bool isCampaign() |
| 13 |
* @method bool isForm() |
| 14 |
*/ |
| 15 |
class GoalSource extends Enum |
| 16 |
{ |
| 17 |
const CAMPAIGN = 'campaign'; |
| 18 |
const FORM = 'form'; |
| 19 |
} |
| 20 |
|