| Total Complexity | 3 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 11 | #[Package('checkout')] |
||
| 12 | class RecurringDataStruct extends Struct |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @internal |
||
| 16 | */ |
||
| 17 | public function __construct( |
||
| 18 | protected string $subscriptionId, |
||
| 19 | protected \DateTimeInterface $nextSchedule, |
||
| 20 | ) { |
||
| 21 | } |
||
| 22 | |||
| 23 | public function getSubscriptionId(): string |
||
| 26 | } |
||
| 27 | |||
| 28 | public function getNextSchedule(): \DateTimeInterface |
||
| 33 |