1 | <?php |
||
14 | class CronRule extends AbstractRule |
||
15 | { |
||
16 | |||
17 | /** |
||
18 | * @param DateTimeInterface $from |
||
19 | * @param DateTimeInterface $to |
||
20 | * @param boolean $inc |
||
21 | * @throws |
||
22 | * @return DateTimeInterface[] |
||
23 | */ |
||
24 | public function getRecurrences(DateTimeInterface $from, DateTimeInterface $to, $inc = true) |
||
41 | |||
42 | /** |
||
43 | * @param CronExpression $rRule |
||
44 | * @param DateTime $from |
||
45 | * @param DateTimeInterface $to |
||
46 | * @param $inc |
||
47 | * @return DateTimeInterface[] |
||
48 | */ |
||
49 | private function getDates(CronExpression $rRule, DateTime $from, DateTimeInterface $to, $inc) |
||
64 | } |