Conditions | 1 |
Paths | 1 |
Total Lines | 5 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
25 | 11 | */ |
|
26 | public function getRecurrences(DateTimeInterface $from, DateTimeInterface $to, $inc = true) |
||
27 | 11 | { |
|
28 | 11 | $rRule = new RecurrRule($this->getRrule(), $this->getStartDate()); |
|
29 | 11 | $rRuleTransformer = new ArrayTransformer(); |
|
30 | $constraint = new BetweenConstraint($from, $to, $inc); |
||
39 | } |