Conditions | 4 |
Paths | 4 |
Total Lines | 17 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 20 |
Changes | 0 |
1 | <?php |
||
23 | public function getModifier(int $times = 1): string |
||
24 | { |
||
25 | if (!isset($this->parts['FREQ'])) { |
||
26 | throw new \BadMethodCallException("RecurrenceRule doesn't contains a FREQ. Not implemented yet."); |
||
27 | } |
||
28 | |||
29 | $freq = $this->parts['FREQ']; |
||
30 | |||
31 | if ('WEEKLY' === $freq) { |
||
32 | return "+$times week"; |
||
33 | } |
||
34 | if ('MONTHLY' === $freq) { |
||
35 | return "+$times month"; |
||
36 | } |
||
37 | |||
38 | throw new \BadMethodCallException("Unknown freq $freq"); |
||
39 | } |
||
40 | |||
46 |