| 1 | <?php |
||
| 7 | class RecurrenceRule |
||
| 8 | { |
||
| 9 | private $parts; |
||
| 10 | |||
| 11 | 4 | private function __construct() |
|
| 14 | |||
| 15 | 4 | public static function createFromArray(array $parts): self |
|
| 22 | |||
| 23 | 3 | public function getModifier(int $times = 1): string |
|
| 40 | |||
| 41 | 3 | public function getLastEvent(\DateTimeImmutable $firstEventStartAt): \DateTimeImmutable |
|
| 53 | |||
| 54 | 1 | public function getParts(): array |
|
| 58 | } |
||
| 59 |