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