| 1 | <?php |
| 2 | |
| 3 | namespace Give\API\REST\V3\Routes\Donations\ValueObjects; |
| 4 | |
| 5 | use Give\Framework\Support\ValueObjects\Enum; |
| 6 | |
| 7 | /** |
| 8 | * @since 4.0.0 |
| 9 | * |
| 10 | * @method static DonationRoute NAMESPACE() |
| 11 | * @method static DonationRoute BASE() |
| 12 | * @method bool isNamespace() |
| 13 | * @method bool isBase() |
| 14 | */ |
| 15 | class DonationRoute extends Enum |
| 16 | { |
| 17 | const NAMESPACE = 'givewp/v3'; |
| 18 | const BASE = 'donations'; |
| 19 | } |
| 20 |