Total Complexity | 5 |
Total Lines | 49 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | class DateRange extends TdObject |
||
15 | { |
||
16 | public const TYPE_NAME = 'dateRange'; |
||
17 | |||
18 | /** |
||
19 | * Point in time (Unix timestamp) at which the date range begins. |
||
20 | * |
||
21 | * @var int |
||
22 | */ |
||
23 | protected int $startDate; |
||
24 | |||
25 | /** |
||
26 | * Point in time (Unix timestamp) at which the date range ends. |
||
27 | * |
||
28 | * @var int |
||
29 | */ |
||
30 | protected int $endDate; |
||
31 | |||
32 | public function __construct(int $startDate, int $endDate) |
||
36 | } |
||
37 | |||
38 | public static function fromArray(array $array): DateRange |
||
43 | ); |
||
44 | } |
||
45 | |||
46 | public function typeSerialize(): array |
||
52 | ]; |
||
53 | } |
||
54 | |||
55 | public function getStartDate(): int |
||
58 | } |
||
59 | |||
60 | public function getEndDate(): int |
||
65 |