# give/4.16.9/src/Subscriptions/ValueObjects/SubscriptionMode.php

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

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/Subscriptions/ValueObjects/SubscriptionMode.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/Subscriptions/ValueObjects/SubscriptionMode.php
- Modified: 2024-10-17T01:45:16+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/Subscriptions/ValueObjects/SubscriptionMode.php#L10-L20`.

```php
<?php

namespace Give\Subscriptions\ValueObjects;

use Give\Framework\Support\ValueObjects\Enum;

/**
 * @since 2.19.6
 *
 * @method static SubscriptionMode TEST()
 * @method static SubscriptionMode LIVE()
 * @method bool isTest()
 * @method bool isLive()
 */
class SubscriptionMode extends Enum {
    const TEST = 'test';
    const LIVE = 'live';
}

```
