blob: d9c81e8c5cbf0d3c21aa4d177e8bc32a68a2b591 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
/**
* Token subscription management.
*
* @package Automattic\Jetpack\Extensions\Premium_Content
*/
namespace Automattic\Jetpack\Extensions\Premium_Content\Subscription_Service;
/**
* Class Token_Subscription
*
* @package Automattic\Jetpack\Extensions\Premium_Content\Subscription_Service
*/
class Token_Subscription {
/**
* End date.
*
* @var string $end_date .
*/
public $end_date = '';
}
|