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