# give/4.16.9/src/DonationForms/ValueObjects/GoalSource.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.9. 20 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/DonationForms/ValueObjects/GoalSource.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/DonationForms/ValueObjects/GoalSource.php
- Modified: 2025-04-16T13:25:04+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.16.9/code/src/DonationForms/ValueObjects/GoalSource.php#L10-L20`.

```php
<?php

namespace Give\DonationForms\ValueObjects;

use Give\Framework\Support\ValueObjects\Enum;

/**
 * @since 4.1.0
 *
 * @method static GoalSource CAMPAIGN()
 * @method static GoalSource FORM()
 * @method bool isCampaign()
 * @method bool isForm()
 */
class GoalSource extends Enum
{
    const CAMPAIGN = 'campaign';
    const FORM = 'form';
}

```
