Total Complexity | 3 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class ExcludeWeekendConstraint implements DatetimeConstraintInterface, RecurrenceConstraintInterface |
||
13 | { |
||
14 | |||
15 | /** |
||
16 | * @param Recurrence $recurrence |
||
17 | * @param \Datetime $datetime |
||
18 | * @return \Datetime |
||
19 | */ |
||
20 | public function apply(Recurrence $recurrence, \Datetime $datetime) |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * @param \Datetime $datetime |
||
33 | * @return bool |
||
34 | */ |
||
35 | private function isWeekend($datetime) { |
||
39 |